LoadExtent: Integer;
None;.
The LoadExtent property determines a restriction for the number of series output in the component.
Property restrictions apply only in the interface. The restriction in the core is set on calling IMetaHierarchy.LeafLoadExtent.
Default restriction for all class components is set to 65,536 elements. When the LoadExtent value is smaller than or equal to zero, this restriction is disabled.
Executing this example requires a form with the Button and MetaAttributesTreeList components located on it. These components must have the Button1 and MetaAttributesTreeList1 identifiers respectively. They are to be configured to work with a time series database.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
MetaAttributesTreeList1.LoadExtent := 10;
End Sub Button1OnClick;
After executing the example clicking the Button component sets a restriction for the number of series output in the MetaAttributesTreeList component.
See also: