Skip to content

RecordsDropped Event

Description

Occurs once records have been dropped onto the grid and the records have actually been added to the grid and the grid has been updated.

Syntax

Public Event RecordsDropped( _
    ByVal TargetRecord As GridRecord, _
    ByVal Records As GridRecords, _
    ByVal Above As Boolean _
)

Parameters

  • TargetRecord: Record in the grid that the records were dropped above or below. See the Above parameter to see if the records were dropped above or below the TargetRecord.
  • Records: GridRecords collection containing all of the records that will be dropped into the Grid Control.
  • Above: Specifies if the records were dropped above or below the TargetRecord.

Remarks

The RecordsDropped event occurs once the records have actually been added to the grid and the grid has been updated.

The DropRecordsEx event occurs when records are dropped into a Grid Control but before they are actually added to the grid, and provides a GridRecords collection containing all of the records that will be dropped into the Grid Control. This gives the opportunity to modify the GridRecords collection before they are actually added to the Grid Control.

See Also


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