Indicates whether the browser can attempt to initiate a drag of the given rows for the given event.
Original signature is '- (BOOL)canDragRowsWithIndexes:(NSIndexSet *)rowIndexes inColumn:(NSInteger)columnIndex withEvent:(NSEvent *)dragEvent'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public virtual bool CanDragRowsWithIndexesInColumnWithEvent( NSIndexSet rowIndexes, NSInteger columnIndex, NSEvent dragEvent )
Public Overridable Function CanDragRowsWithIndexesInColumnWithEvent ( _ rowIndexes As NSIndexSet, _ columnIndex As NSInteger, _ dragEvent As NSEvent _ ) As Boolean
public: virtual bool CanDragRowsWithIndexesInColumnWithEvent( NSIndexSet^ rowIndexes, NSInteger columnIndex, NSEvent^ dragEvent )

- rowIndexes (NSIndexSet)
- Rows the user is dragging
- columnIndex (NSInteger)
- Column containing the rows the user is dragging.
- dragEvent (NSEvent)
- Mouse-drag event.

YES when rowIndexes identifies at least one row and all the identified rows are enabled; otherwise, NO.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)