[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IButton.CancelButton

CancelButton Property

CancelButton

Gets or sets whether the button is the cancel button.

Use this property to determine whether the button is configured as a cancel button.

Not supported by the *.ssjson format.

Declaration
bool CancelButton { get; set; }
Property CancelButton As Boolean
Examples
IButton button = worksheet.Controls.AddButton(20, 20, 120, 24);
button.CancelButton = true;
bool isCancelButton = button.CancelButton;