[]
Represents properties used to generate signature appearance when a document is signed.
public class SignatureAppearance
Initializes a new instance of the SignatureAppearance class.
public SignatureAppearance()
Gets or sets the back color, if not specified then BackColor will be used.
public Color? BackColor { get; set; }
Gets or sets the border, if null then Border will be used.
public Border Border { get; set; }
Gets or sets the signature's caption. This field can be empty, in this case caption is generated as: {SignatureProperties.SignerName} ({SignatureProperties.Location})\r\n{SignatureProperties.SigningDateTime}
public string Caption { get; set; }
Gets or sets a value indicating how to position the signature's caption relative to image.
public CaptionImageRelation CaptionImageRelation { get; set; }
Gets or sets the signature’s image.
public IImage Image { get; set; }
Gets or sets the TextFormat object defining text format. FontSize can be 0 in this case text will be fit in available bounds.
public TextFormat TextFormat { get; set; }