SignatureLine
SignatureLine class
Represent the signature line.
class SignatureLine;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
getSigner() | Gets or sets the signer. |
setSigner(string) | Gets or sets the signer. |
getTitle() | Gets or sets the title of singer. |
setTitle(string) | Gets or sets the title of singer. |
getEmail() | Gets or sets the email of singer. |
setEmail(string) | Gets or sets the email of singer. |
isLine() | Indicates whether it is a signature line. |
setIsLine(boolean) | Indicates whether it is a signature line. |
getAllowComments() | Indicates whether comments could be attached. |
setAllowComments(boolean) | Indicates whether comments could be attached. |
getShowSignedDate() | Indicates whether show signed date. |
setShowSignedDate(boolean) | Indicates whether show signed date. |
getInstructions() | Gets or sets the text shown to user at signing time. |
setInstructions(string) | Gets or sets the text shown to user at signing time. |
getSignatureLineType() | Gets or sets the signature type. Default - When the default value is set, the corresponding ProviderId value is fixed to {0000000000-0000-0000-0000-0000000000}. Stamp - When the value is Stamp, the corresponding ProviderId value is usually {000CD6A4-0000-0000-C000-000000000046}. Custom - When the value is Custom, the corresponding ProviderId value usually needs to be set by the user. it should be obtained from the documentation shipped with the provider. |
setSignatureLineType(SignatureType) | Gets or sets the signature type. Default - When the default value is set, the corresponding ProviderId value is fixed to {0000000000-0000-0000-0000-0000000000}. Stamp - When the value is Stamp, the corresponding ProviderId value is usually {000CD6A4-0000-0000-C000-000000000046}. Custom - When the value is Custom, the corresponding ProviderId value usually needs to be set by the user. it should be obtained from the documentation shipped with the provider. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
getSigner()
Gets or sets the signer.
getSigner() : string;
setSigner(string)
Gets or sets the signer.
setSigner(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getTitle()
Gets or sets the title of singer.
getTitle() : string;
setTitle(string)
Gets or sets the title of singer.
setTitle(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getEmail()
Gets or sets the email of singer.
getEmail() : string;
setEmail(string)
Gets or sets the email of singer.
setEmail(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isLine()
Indicates whether it is a signature line.
isLine() : boolean;
setIsLine(boolean)
Indicates whether it is a signature line.
setIsLine(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getAllowComments()
Indicates whether comments could be attached.
getAllowComments() : boolean;
setAllowComments(boolean)
Indicates whether comments could be attached.
setAllowComments(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getShowSignedDate()
Indicates whether show signed date.
getShowSignedDate() : boolean;
setShowSignedDate(boolean)
Indicates whether show signed date.
setShowSignedDate(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getInstructions()
Gets or sets the text shown to user at signing time.
getInstructions() : string;
setInstructions(string)
Gets or sets the text shown to user at signing time.
setInstructions(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getSignatureLineType()
Gets or sets the signature type. Default - When the default value is set, the corresponding ProviderId value is fixed to {0000000000-0000-0000-0000-0000000000}. Stamp - When the value is Stamp, the corresponding ProviderId value is usually {000CD6A4-0000-0000-C000-000000000046}. Custom - When the value is Custom, the corresponding ProviderId value usually needs to be set by the user. it should be obtained from the documentation shipped with the provider.
getSignatureLineType() : SignatureType;
Returns
setSignatureLineType(SignatureType)
Gets or sets the signature type. Default - When the default value is set, the corresponding ProviderId value is fixed to {0000000000-0000-0000-0000-0000000000}. Stamp - When the value is Stamp, the corresponding ProviderId value is usually {000CD6A4-0000-0000-C000-000000000046}. Custom - When the value is Custom, the corresponding ProviderId value usually needs to be set by the user. it should be obtained from the documentation shipped with the provider.
setSignatureLineType(value: SignatureType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | SignatureType | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;