Vcl.Grids.TCustomGrid.OnFixedCellClick

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property OnFixedCellClick: TFixedCellClickEvent read FOnFixedCellClick write FOnFixedCellClick;

C++

__property TFixedCellClickEvent OnFixedCellClick = {read=FOnFixedCellClick, write=FOnFixedCellClick};

プロパティ

種類 可視性 ソース ユニット
event protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

説明

ユーザーが固定セルをクリックしたときにトリガされるイベントを決定します。

OnFixedCellClick のイベント ハンドラを作成し、ユーザーによる固定セルのクリックに対応するアプリケーションに独自のロジックを提供します。OnFixedCellClick は、Options プロパティに goFixedColClick オプションまたは goFixedRowClick オプション、あるいはその両方が含まれる場合にのみトリガされます。

OnFixedCellClick は、列にソートを行っている場合に便利です。固定セルをクリックすると、適用されたソート ルールを逆にすることができます。

関連項目