The Signature
public class SignatureSettings
Public Class SignatureSettings
Introduced: X14.
The following code shows how to include a Document
@Html.TXTextControl().DocumentViewer(settings => {
settings.DocumentPath = Server.MapPath("~/App_Data/sign.tx");
settings.Dock = DocumentViewerSettings.DockStyle.Fill;
settings.SignatureSettings = new SignatureSettings()
{
ShowSignatureBar = true,
OwnerName = "Josh Jackson",
SignerName = "Peter Petersen",
SignerInitials = "PP",
SignatureBoxName = "txsign",
UniqueId = "12345-12345-12345-12345"
};
}).Render()
Constructor | Description |
---|---|
Signature |
Creates a new instance of the Web. |
Property | Description |
---|---|
Custom |
Specifies whether a custom signature style is used or not. |
Custom |
Specifies whether the signing process is handled within custom code. |
Default |
The default font for the signature based on a text. |
Owner |
Specifies the name of the document owner. |
Redirect |
Specifies an Url that is used for a controller-side redirection after a successful signature acquisition process. |
Show |
Specifies whether the signature bar is shown on initializing the Document |
Signature |
Obsolete. |
Signature |
Specifies a collection of signature boxes. |
Signer |
Specifies the initials of the signer that is supposed to sign the document. |
Signer |
Specifies the name of the signer that is supposed to sign the document. |
Unique |
Specifies a unique document string that is rendered on the document. |