|
|
|
SftTreeItems.EditNoFocusStyle Property |
Defines the display style of selected items during cell editing.
Syntax
VB.NET |
Style = object.EditNoFocusStyle As SftTreeNoFocusStyleConstants |
||
VB |
Style = object.EditNoFocusStyle As SftTreeNoFocusStyleConstants |
||
C#.NET |
SftTreeNoFocusStyleConstants Style = object.EditNoFocusStyle; |
||
VC++ |
enum SftTreeNoFocusStyleConstants Style = object->EditNoFocusStyle;
|
||
C |
HRESULT object->get_EditNoFocusStyle(enum SftTreeNoFocusStyleConstants* Style); |
||
Delphi |
Style := object.EditNoFocusStyle : TOleEnum; |
||
VB.NET |
object.EditNoFocusStyle = Style As SftTreeNoFocusStyleConstants |
||
VB |
object.EditNoFocusStyle = Style As SftTreeNoFocusStyleConstants |
||
C#.NET |
SftTreeNoFocusStyleConstants object.EditNoFocusStyle = Style; |
||
VC++ |
enum SftTreeNoFocusStyleConstants object->EditNoFocusStyle = Style;
|
||
C |
HRESULT object->put_EditNoFocusStyle(enum SftTreeNoFocusStyleConstants Style); |
||
Delphi |
object.EditNoFocusStyle := Style : TOleEnum; |
object
A SftTreeItems object.
Style
Defines the display style of selected items during cell editing.
Style |
Value |
Description |
0 |
The selected items are drawn the same way as for a tree control that has the input focus. The Items.SelectBackColorNoFocus and Items.SelectForeColorNoFocus properties can be used to define the colors used for selected items in this case. |
|
1 |
The selected items are drawn as items that are not selected, but are framed by a rectangle drawn using the color specified by the Items.SelectBackColor property. |
|
2 |
The selected items are drawn as items that are not selected. The user cannot distinguish between selected items and items that are not selected during cell editing. |
Comments
The EditNoFocusStyle property defines the display style of selected items during cell editing.
The Items.SelectStyle property is used to change the appearance of selected items in a tree control that has the input focus.
The Items.NoFocusStyle property can be used to define the display style of selected items when the tree control does not have the input focus.
See Also SftTreeItems Object | Object Hierarchy