|
|
|
SftBoxHeaders.Resizable Property |
Defines whether column headers are resizable.
Syntax
VB.NET |
Style = object.Resizable As SftBoxColumnResizeConstants |
||
VB |
Style = object.Resizable As SftBoxColumnResizeConstants |
||
C#.NET |
SftBoxColumnResizeConstants Style = object.Resizable; |
||
VC++ |
enum SftBoxColumnResizeConstants Style = object->Resizable;
|
||
C |
HRESULT object->get_Resizable(enum SftBoxColumnResizeConstants* Style); |
||
Delphi |
Style := object.Resizable : TOleEnum; |
||
VB.NET |
object.Resizable = Style As SftBoxColumnResizeConstants |
||
VB |
object.Resizable = Style As SftBoxColumnResizeConstants |
||
C#.NET |
SftBoxColumnResizeConstants object.Resizable = Style; |
||
VC++ |
enum SftBoxColumnResizeConstants object->Resizable = Style;
|
||
C |
HRESULT object->put_Resizable(enum SftBoxColumnResizeConstants Style); |
||
Delphi |
object.Resizable := Style : TOleEnum; |
object
A SftBoxHeaders object.
Style
Defines whether column headers are resizable.
Style |
Value |
Description |
0 |
The columns cannot be resized. |
|
1 |
One column at a time can be resized. |
|
2 |
One or multiple columns can be resized at a time. |
Comments
The Resizable property defines whether column headers are resizable.
Even if column resizing is allowed, individual columns can be locked using the Header.Locked property.