SignedDataBlockObject interface
Represents a set of data in a Microsoft Office InfoPath form which can be signed.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)
Syntax
'Declaration
<GuidAttribute("096CD714-0786-11D1-95FA-0080C78EE3BB")> _
Public Interface SignedDataBlockObject _
Inherits SignedDataBlock
'Usage
Dim instance As SignedDataBlockObject
[GuidAttribute("096CD714-0786-11D1-95FA-0080C78EE3BB")]
public interface SignedDataBlockObject : SignedDataBlock
Remarks
This type is a wrapper for a coclass that is required by managed code for COM interoperability. Use this type to access the members of the COM interface implemented by this coclass. For information about the COM interface, including a link to descriptions of its members, seeSignedDataBlock.
The SignedDataBlockObject object provides a number of properties and one method that can be used to programmatically interact with a set of data which can be signed. It is accessible through the SignedDataBlocks property of the XDocument object.
Examples
The following example returns the first set of data in the form which can be signed, or, if only the entire form can be signed, the entire form:
SignedDataBlock sdb = thisXDocument.SignedDataBlocks[0];