AfterSelChange Event

Fired after the selected range changes.

Syntax

Public Event AfterSelectionChange As AfterSelectionChangeEventHandler

Applies To

Grid Object

Parameters

The following parameters are available:

Parameter Description
NewFirstRow The first row's number of the new selection.
NewFirstCol The first column's number of the new selection.
NewLastRow The last row's number of the new selection .
NewLastCol The last column's number of the new selection.

Remarks

This event is useful if you want to display additional information about the current selection. To perform validation or prevent certain cells from being selected, use the BeforeRowColChange and BeforeSelChange events instead.

See Also

BeforeSelectionChange Event