[]
Gets or sets whether the control is visible.
Use this property to determine whether the control is currently displayed on the worksheet.
bool Visible { get; set; }
Property Visible As Boolean
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.Visible = false;
bool visible = control.Visible;