[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IControl.Visible

Visible Property

Visible

Gets or sets whether the control is visible.

Use this property to determine whether the control is currently displayed on the worksheet.

Declaration
bool Visible { get; set; }
Property Visible As Boolean
Examples
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.Visible = false;
bool visible = control.Visible;