Skip to content

Visible Property

Description

Specifies whether the GridRecord is visible.

Property Type

Read-write property.

Syntax (Visual Basic)

Public Property Visible() As Boolean

Remarks

If False, the GridRow that is associated with the GridRecord will not be visible in the GridControl.

Example

Visible Sample (Visual Basic)

This sample illustrates how to determine if a row is visible in the GridControl. It also shows how to hide/show a row in the GridControl.

' This will hide the 1st Row in the GridControl  
wndGridControl.Records(0).Visible = False  

' This will display whether the 1st Row is visible  
Debug.Print wndGridControl.Records(0).Visible

See Also


Copyright (c) 1998-2024 Codejock Technologies. All rights reserved.