Skip to content

Record Property

Description

A collection of GridRecord objects. Returns the specified GridRecord in the collection of records.

Property Type

Read-only property

Syntax (Visual Basic)

Public Property Record( _
    ByVal [Index](#) As Long _
) As [GridRecord](XtremeGridControl~GridRecord.md)

Parameters

Remarks

Valid Index values range from 0 to Count - 1.

Example

' This will change the BackColor of the 4th item in the 1st row/record  
wndGridControl.Records(0).Item(3).BackColor = vbBlue  

' This will expand the 1st row/record, displaying the child rows/records  
wndGridControl.Records(0).Expanded = True  

See Also


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