NestedLabels

 

This property enables/disables the use of the nested labels callback interface. If this property is enabled, you must create your own version of the callback which must implement ALL of the abstract methods listed in TDGNestedLabel.Java:

 

int getNumLevels(); Used to determine the number of levels of nested labels.

 

int getNumLabelsOnLevel(int nLevel); Used to determine the number of labels at nLevel.

 

Vector getAllLabels(int nLevel); Used to get all the labels at nLevel.

 

String getLabel(int nGroup, int nLevel); Get the string specified at nGroup and nLevel.

 

int getLabelGrouping(int nGroup, int nLevel); Get the number of labels grouped at nLevel.

 

In addition to creating these methods, you must use the getO1LabelCallback() method to define the callback.

Data Type:

Boolean

Range:

True/False

Default:

False

Syntax:

setNestedLabels ( true | false );

 

boolean = getNestedLabels();

Notes:

You may use getO1LabelCallback() to determine if a callback has been assigned with setO1LabelCallback.

Also See:

setO1LabelCallback(), getO1LabelCallback()