Signature.SignatureBlockXmlNode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the XML node corresponding a digital signature.
public:
property Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNode ^ SignatureBlockXmlNode { Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNode ^ get(); };
public Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode SignatureBlockXmlNode { get; }
member this.SignatureBlockXmlNode : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode
Public ReadOnly Property SignatureBlockXmlNode As IXMLDOMNode
Property Value
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.<span class="label">SignatureBlockXmlNode</span>;
thisXDocument.UI.Alert("Digital signature XML block: \n" + signatureNode.xml);
}