SignEvent.XDocument-Eigenschaft
Ruft einen Verweis auf das XDocument-Objekt ab, das dem OnSign-Ereignis zugeordnet ist.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)
Syntax
'Declaration
<DispIdAttribute(100)> _
ReadOnly Property XDocument As XDocument
'Usage
Dim instance As SignEvent
Dim value As XDocument
value = instance.XDocument
[DispIdAttribute(100)]
XDocument XDocument { get; }
Hinweise
Im folgenden Beispiel wird eine Variable auf true festgelegt, wenn das XDocument-Objekt signiert ist. Sie wird auf false festgelegt, wenn das XDocument-Objekt nicht signiert ist:
public void OnSign(SignEvent e)
{
Signature mySignedData = e.SignedDataBlock.Signatures.Create();
mySignedData.Sign();
bool IsSignedDoc = e.XDocument.IsSigned;
e.ReturnStatus = IsSignedDoc;
}
Siehe auch
Referenz
SignEvent-Schnittstelle
SignEvent-Member
Microsoft.Office.Interop.InfoPath-Namespace