Gets a particular signature field from the collection.

GetItem()

public SignatureField GetItem();
Public Function GetItem() As SignatureField

GetItem(Int)

public SignatureField GetItem(int id);
Public Function GetItem(ByVal id As Integer) As SignatureField

GetItem(String)

public SignatureField GetItem(string name);
Public Function GetItem(ByVal name As String) As SignatureField

Parameters

Parameter Description
id Specifies the signature field's identifier set with the signature field's constructor or the ID property. The method returns null, if a signature field with the specified identifier does not exist.
name Specifies the signature field's name set with set with the signature field's constructor or the Name property. The method returns null, if a signature field with the specified name does not exist.

Return Value

The return value is null, if a signature field with the specified parameters could not be found. Otherwise, it is an object of the type SignatureField.