편집

다음을 통해 공유


Signature.SignatureBlockXmlNode Property

Definition

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);
}

Applies to