SignEvent.XDocument - Propriété
Obtient une référence à l'objet XDocument associé à l'événement OnSign .
Espace de noms : Microsoft.Office.Interop.InfoPath
Assembly : Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)
Syntaxe
'Déclaration
ReadOnly Property XDocument As XDocument
Get
'Utilisation
Dim instance As SignEvent
Dim value As XDocument
value = instance.XDocument
XDocument XDocument { get; }
Valeur de propriété
Type : Microsoft.Office.Interop.InfoPath.XDocument
Implémentations
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.XDocument.IsSigned;
e.ReturnStatus = IsSignedDoc;
}