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::SemiTrust::IXMLDOMNode ^ SignatureBlockXmlNode { Microsoft::Office::Interop::InfoPath::SemiTrust::IXMLDOMNode ^ get(); };
public Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMNode SignatureBlockXmlNode { get; }
member this.SignatureBlockXmlNode : Microsoft.Office.Interop.InfoPath.SemiTrust.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);
}
Remarks
Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.