Share via


Signature.SignatureBlockXmlNode property

Gets the XML node corresponding a digital signature.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
ReadOnly Property SignatureBlockXmlNode As IXMLDOMNode
    Get
'Usage
Dim instance As Signature
Dim value As IXMLDOMNode

value = instance.SignatureBlockXmlNode
IXMLDOMNode SignatureBlockXmlNode { get; }

Property value

Type: Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode

Examples

In the following example, the XML of the SignatureBlockXmlNode property of the SignatureObject object is displayed in a message box:

public void DisplaySignatureProperties()
{
SignatureObject mySignature = thisXDocument.SignedDataBlocks[0].Signatures[0];
IXMLDOMNode signatureNode = mySignature.SignatureBlockXmlNode;
thisXDocument.UI.Alert("Digital signature XML block: \n" + signatureNode.xml);
}

See also

Reference

Signature interface

Signature members

Microsoft.Office.Interop.InfoPath namespace