Control.Visible Property
Gets or sets a value indicating whether the control and all its child controls are displayed.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System.Booleantrue if the control and all its child controls are displayed; otherwise, false. The default is true.
The following code example uses the derived classes VScrollBar and HScrollBar and sets their Visible property values, based on the size of an Image being displayed in a PictureBox control. This example requires that a PictureBox has been created on a form and that HScrollBar and VScrollBar controls have been created on the PictureBox. This code should be called when the image is loaded into the picture box and by the Resize event of the form.
Public Sub DisplayScrollBars() ' Display or hide the scroll bars based upon ' whether the image is larger than the PictureBox. If pictureBox1.Width > pictureBox1.Image.Width Then hScrollBar1.Visible = False Else hScrollBar1.Visible = True End If If pictureBox1.Height > pictureBox1.Image.Height Then vScrollBar1.Visible = False Else vScrollBar1.Visible = True End If End Sub 'DisplayScrollBars
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.