|
|
|
SftTreeItems.CalcLimit Property |
Defines the maximum number of items to consider for optimal column width and scrolling calculation.
Syntax
VB.NET |
Limit = object.CalcLimit As Integer |
||
VB |
Limit = object.CalcLimit As Long |
||
C#.NET |
int Limit = object.CalcLimit; |
||
VC++ |
long Limit = object->CalcLimit;
|
||
C |
HRESULT object->get_CalcLimit(long* Limit); |
||
Delphi |
Limit := object.CalcLimit : Integer; |
||
VB.NET |
object.CalcLimit = Limit As Integer |
||
VB |
object.CalcLimit = Limit As Long |
||
C#.NET |
int object.CalcLimit = Limit; |
||
VC++ |
long object->CalcLimit = Limit;
|
||
C |
HRESULT object->put_CalcLimit(long Limit); |
||
Delphi |
object.CalcLimit := Limit : Integer; |
object
A SftTreeItems object.
Limit
Defines the maximum number of items to consider for optimal column width and scrolling calculation. If 0 is specified, all items will be considered.
Comments
The CalcLimit property defines the maximum number of items to consider for optimal column width and scrolling calculation.
The limit defined using the CalcLimit property defines how many items are evaluated using the methods Column.OptimalWidth, RowHeaders.OptimalWidth, Column.MakeOptimal, RowHeaders.MakeOptimal and Items.RecalcHorizontalExtent.
See Also SftTreeItems Object | Object Hierarchy