Skip to content

FocusChanging Event

Description

Occurs before a user selects a row or a column.

Syntax

Public Event FocusChanging( _
    ByVal NewRow As GridRow, _
    ByVal NewColumn As GridColumn, _
    ByVal NewItem As GridRecordItem, _
    ByRef Cancel As Boolean _
)

Parameters

  • NewRow: Reference to the new GridRow which has been selected.
  • NewColumn: Reference to the new GridColumn which has been selected.
  • NewItem: Reference to the new GridRecordItem which has been selected.
  • Cancel: Set to True to cancel the selection operation.

Remarks

Before the user selects a row in the GridControl, it fires the FocusChanging event. The SelectionChanged event is fired when the focus has changed.

See Also


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