|
|
|
SftTreeCell.Ignore Property |
Defines whether the cell is ignored for optimal column width and extent calculation.
Syntax
VB.NET |
Boolean = object.Ignore As Boolean |
||
VB |
Boolean = object.Ignore As Boolean |
||
C#.NET |
bool Boolean = object.Ignore; |
||
VC++ |
VARIANT_BOOL Boolean = object->Ignore;
|
||
C |
HRESULT object->get_Ignore(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.Ignore : WordBool; |
||
VB.NET |
object.Ignore = Boolean As Boolean |
||
VB |
object.Ignore = Boolean As Boolean |
||
C#.NET |
bool object.Ignore = Boolean; |
||
VC++ |
VARIANT_BOOL object->Ignore = Boolean;
|
||
C |
HRESULT object->put_Ignore(VARIANT_BOOL Boolean); |
||
Delphi |
object.Ignore := Boolean : WordBool; |
object
A SftTreeCell object.
Boolean
Defines whether the cell is ignored for optimal column width and extent calculation.
Boolean |
Description |
True |
This cell is ignored for optimal column width calculation using Column.MakeOptimal, Column.OptimalWidth and ColumnsObj.MakeOptimal. This can be used if certain cell contents are known to be unusually long, which would make a column too wide. |
False |
This cell is included in the optimal column width calculation using Column.MakeOptimal, Column.OptimalWidth and ColumnsObj.MakeOptimal, unless the item is excluded altogether using the Item.Ignore property. |
Comments
The Ignore property defines whether the cell is ignored for optimal column width and extent calculation.
See Also SftTreeCell Object | Object Hierarchy