SignEvent.XDocument 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.
public:
property Microsoft::Office::Interop::InfoPath::XDocument ^ XDocument { Microsoft::Office::Interop::InfoPath::XDocument ^ get(); };
public Microsoft.Office.Interop.InfoPath.XDocument XDocument { get; }
member this.XDocument : Microsoft.Office.Interop.InfoPath.XDocument
Public ReadOnly Property XDocument As XDocument
Valeur de propriété
Implémente
Remarques
Dans l'exemple suivant, une variable a la valeur true si le XDocument est signé et a la valeur false si le XDocument ne l'est pas :
public void OnSign(SignEvent e)
{
Signature mySignedData = e.SignedDataBlock.Signatures.Create();
mySignedData.Sign();
bool IsSignedDoc = e.<span class="label">XDocument</span>.IsSigned;
e.ReturnStatus = IsSignedDoc;
}