Vcl.CategoryButtons.TButtonDrawState
Delphi
TButtonDrawState = set of (
bdsSelected, // Item is selected and in the "down" state
bdsHot, // Item has the mouse over it
bdsFocused, // Item should show focus
bdsDown, // Item is being pressed by the user
bdsDragged, // The drag image for that button is being drawn
bdsInsertLeft, // Show that an item can be inserted to the left of this item
bdsInsertTop, // Show that an item can be inserted above this item
bdsInsertRight, // Show that an item can be inserted to the right of this item
bdsInsertBottom // Show that an item can be inserted below this item
);
C++
typedef System::Set<Vcl_Categorybuttons__1, Vcl_Categorybuttons__1::bdsSelected, Vcl_Categorybuttons__1::bdsInsertBottom> TButtonDrawState;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
set typedef |
public | Vcl.CategoryButtons.pas Vcl.CategoryButtons.hpp |
Vcl.CategoryButtons | Vcl.CategoryButtons |
説明
ボタンの描画状態を表す値です。
次のパラメータを使用して,ボタンの描画状態を設定できます。
パラメータ | 説明 |
---|---|
bdsSelected |
項目が選択され,押下された状態です。 |
bdsHot |
項目の上にマウスがあります。 |
bdsFocused |
項目にフォーカスがあることを示します。 |
bdsDown |
項目が押下されています。 |
bdsDragged |
ボタンのドラッグイメージが描画されています。 |
bdsInsertLeft |
この項目の左に項目を挿入できることを示します。 |
bdsInsertTop |
この項目の上に項目を挿入できることを示します。 |
bdsInsertRight |
この項目の右に項目を挿入できることを示します。 |
bdsInsertBottom |
この項目の下に項目を挿入できることを示します。 |