Inserts a new signature field in a Text Control document.

Add(SignatureField, Int)

public bool Add(SignatureField signatureField, int textPosition);

Add(SignatureField, HorizontalAlignment, Int, FrameInsertionMode)

public bool Add(SignatureField signatureField, HorizontalAlignment alignment, int textPosition, FrameInsertionMode insertionMode);

Add(SignatureField, System.Drawing.Point, Int, FrameInsertionMode)

public bool Add(SignatureField signatureField, System.Drawing.Point location, int textPosition, FrameInsertionMode insertionMode);

Add(SignatureField, Int, System.Drawing.Point, FrameInsertionMode)

public bool Add(SignatureField signatureField, int pageNumber, System.Drawing.Point location, FrameInsertionMode insertionMode);

Add(SignatureField, System.Drawing.Point, FrameInsertionMode)

public bool Add(SignatureField signatureField, System.Drawing.Point location, FrameInsertionMode insertionMode);

Add(SignatureField, FrameInsertionMode)

public bool Add(SignatureField signatureField, FrameInsertionMode insertionMode);

Parameters

Parameter Description
signatureField Specifies the signature field to add.
textPosition Specifies the text position at which the signature field is to be inserted. If -1 is specified, the signature field is inserted at the current input position.
alignment Specifies the signature field's horizontal alignment. It can be one of the HorizontalAlignment values:
Event Description
Left The signature field is left aligned relative to the paragraph to which it is anchored.
Right The signature field is right aligned relative to the paragraph to which it is anchored.
Centered The signature field is centered relative to the paragraph to which it is anchored.
Justify This value is not possible for the alignment of signature fields.
location Specifies the location, in twips, at which the signature field is to be inserted. This is a location relative to the top left corner either of a page or of a paragraph.
insertionMode Specifies how the text flow is handled. It can be one of the values of the FrameInsertionMode enumeration.
pageNumber Specifies the number of a page beginning with 1 where the signature field is located.

Return Value

The return value is true, if the signature field could be added. Otherwise, it is false.