SignaturesCollection Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains a SignatureObject for each signature in the Microsoft Office InfoPath form or SignedDataBlockObject object.
public interface class SignaturesCollection : Microsoft::Office::Interop::InfoPath::Signatures
[System.Runtime.InteropServices.Guid("096CD716-0786-11D1-95FA-0080C78EE3BB")]
public interface SignaturesCollection : Microsoft.Office.Interop.InfoPath.Signatures
type SignaturesCollection = interface
interface Signatures
Public Interface SignaturesCollection
Implements Signatures
- Derived
- Attributes
- Implements
Examples
The following example will return the Signatures collection of the first set of data in the form which can be signed, or, if only the entire form can be signed, will return the Signatures of the form:
<span class="label">Signatures</span> block1Signatures = thisXDocument.SignedDataBlocks[0].<span class="label">Signatures</span>;
Remarks
This type is a wrapper for a COM interface implemented by a coclass that is required by managed code for COM interoperability. To access the members specified by this interface, use the type that wraps the coclass that implements this interface. For information about that type, including usage, remarks, and examples, seeSignatures.
The SignaturesCollection collection implements properties and a method that can be used to access a form's associated SignatureObject objects and to create a signature. It is accessible through the Signatures property of the SignedDataBlockObject object.
Properties
Count |
Gets the number of SignatureObject objects in the collection. (Inherited from Signatures) |
Item[Object] |
Gets a reference to the specified digital signature from the SignaturesCollection collection. (Inherited from Signatures) |
Methods
Create() |
Creates a new SignatureObject object. (Inherited from Signatures) |
GetEnumerator() |
Gets an IEnumerator that iterates over all entries in the SignaturesCollection object. (Inherited from Signatures) |