Vcl.Grids.TGridState
Delphi
TGridState = (gsNormal, gsSelecting, gsRowSizing, gsColSizing,
gsRowMoving, gsColMoving);
C++
enum DECLSPEC_DENUM TGridState : unsigned char { gsNormal, gsSelecting, gsRowSizing, gsColSizing, gsRowMoving, gsColMoving };
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
| enum | public | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | Vcl.Grids |
説明
TGridState 型は,グリッドのレイアウトを変更中のユーザーアクションを示します。
TGridState 型は,グリッドレイアウトがどのように変化しているかについての状態情報を表します。次の表に,指定できる値を示します。
| 値 | 意味 |
|---|---|
|
gsNormal |
グリッドレイアウトは変化中でない |
|
gsSelecting |
ユーザーがセルまたは行を選択中である |
|
gsRowSizing |
ユーザーが行の高さを変更中である |
|
gsColSizing |
ユーザーが列の幅を変更中である |
|
gsRowMoving |
ユーザーが行を新しい位置にドラッグ中である |
|
gsColMoving |
ユーザーが列を新しい位置にドラッグ中である |