Signature.SignatureBlockXmlNode Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nœud XML correspondant à une signature numérique.
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
Valeur de propriété
Exemples
Dans l’exemple suivant, le code XML de la propriété SignatureBlockXmlNode de l’objet SignatureObject s’affiche dans une boîte de message :
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);
}