|
|
|
SftBoxItems.OutlineStyle Property |
Defines the display style of the selection outline.
Syntax
VB.NET |
Style = object.OutlineStyle As SftBoxOutlineStyleConstants |
||
VB |
Style = object.OutlineStyle As SftBoxOutlineStyleConstants |
||
C#.NET |
SftBoxOutlineStyleConstants Style = object.OutlineStyle; |
||
VC++ |
enum SftBoxOutlineStyleConstants Style = object->OutlineStyle;
|
||
C |
HRESULT object->get_OutlineStyle(enum SftBoxOutlineStyleConstants* Style); |
||
Delphi |
Style := object.OutlineStyle : TOleEnum; |
||
VB.NET |
object.OutlineStyle = Style As SftBoxOutlineStyleConstants |
||
VB |
object.OutlineStyle = Style As SftBoxOutlineStyleConstants |
||
C#.NET |
SftBoxOutlineStyleConstants object.OutlineStyle = Style; |
||
VC++ |
enum SftBoxOutlineStyleConstants object->OutlineStyle = Style;
|
||
C |
HRESULT object->put_OutlineStyle(enum SftBoxOutlineStyleConstants Style); |
||
Delphi |
object.OutlineStyle := Style : TOleEnum; |
object
A SftBoxItems object.
Style
Defines the display style of the selection outline.
Name |
Value |
Description |
0 |
Rectangle
- The selection display style, defined using the Items.SelectionStyle
property is rendered using a rectangle. The colors used for the selection
rectangle are based on the definitions for selected items, cells and
columns (see Items.SelectionStyle). |
|
1 |
Rectangle with borders and gradient fill - The selection display style,
defined using the Items.SelectionStyle property is rendered using a rounded
rectangle, with a gradient fill. The colors used for the selection
outline are defined using the Items.SelectOutlineBorderColor,
Items.SelectInnerBorderColor, Items.SelectInnerFill1, Items.SelectInnerFill2
or Items.SelectNoFocusOutlineBorderColor,
Items.SelectNoFocusInnerBorderColor, Items.SelectNoFocusInnerFill1, Items.SelectNoFocusInnerFill2 properties. |
Comments
The OutlineStyle property defines the display style of the selection outline.
The Items.SelectionStyle and Items.NoFocusStyle properties work in conjunction with the OutlineStyle property to determine the exact appearance of items. The highlighted portion of an item is rendered using the outline style defined by the OutlineStyle property.