[]
Gets a Boolean value indicating whether the user can set properties of the ISignature object. Read-only.
This value can be checked before working with the setup information returned by Setup.
bool CanSetup { get; }
ReadOnly Property CanSetup As Boolean
ISignature signature = workbook.Signatures.AddSignatureLine(worksheet, 100.0, 50.0);
bool canSetup = signature.CanSetup;
ISignatureSetup setup = canSetup ? signature.Setup : null;