[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISignature.CanSetup

CanSetup Property

CanSetup

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.

Declaration
bool CanSetup { get; }
ReadOnly Property CanSetup As Boolean
Examples
ISignature signature = workbook.Signatures.AddSignatureLine(worksheet, 100.0, 50.0);
bool canSetup = signature.CanSetup;
ISignatureSetup setup = canSetup ? signature.Setup : null;