FlexPivot for WinForms
BeforeSort イベント (C1FlexGridBase)

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : BeforeSort イベント
Fires before a column is sorted by a click on a column header.
シンタックス
'宣言
 
Public Event BeforeSort As SortColEventHandler
public event SortColEventHandler BeforeSort
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、SortColEventArgs 型の引数を受け取りました。次の SortColEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets or sets a value indicating whether the drag operation should be canceled.  
Gets the column that is being sorted.  
Gets or sets a value indicating whether the drag operation has been handled by the event handler.  
Gets or sets a SortFlags value that determines the sorting order.  
解説

This event only fires if the sorting was caused by a click on a column header. It does not fire before sorting with the Sort(SortFlags,Int32) method.

This event is useful when you want to prevent the user from sorting certain columns or to specify custom sorting orders for specific columns. You may do so by modifying the value of the SortColEventArgs.Order parameter.

参照