[]
Gets or sets whether the control is enabled.
Not supported by the *.ssjson format.
bool Enabled { get; set; }
Property Enabled As Boolean
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.Enabled = false;
bool enabled = control.Enabled;