Vcl.Grids.TGridScrollDirection
Delphi
type TGridScrollDirection = set of (sdLeft, sdRight, sdUp, sdDown);
C++
typedef System::Set<Vcl_Grids__4, Vcl_Grids__4::sdLeft, Vcl_Grids__4::sdDown> TGridScrollDirection;
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
set typedef |
public | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | Vcl.Grids |
説明
TGridScrollDirection は,グリッドコントロールのセルをスクロールする方向を示します。
TGridScrollDirection は,グリッドをスクロールする方向を示す 1 つまたは 2 つの値のセットです。このセットには,最小で 1 つの値,最大で 1 つの水平値と 1 つの垂直値が含まれます。次の表に,指定できる値を示します。
| 値 | 意味 |
|---|---|
|
sdLeft |
セルを水平方向に左へスクロールする |
|
sdRight |
セルを水平方向に右へスクロールする |
|
sdUp |
セルを垂直方向に上へスクロールする |
|
sdDown |
セルを垂直方向に下へスクロールする |