Package quadbase.util
Interface IFloatingTextSet
public interface IFloatingTextSet
This interface is used to add/remove text strings from the main chart window.
A handle to an object that implements this interface can be obtained by calling the
gethFloatingTextSet function defined in QbChart.
-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(ITextString t) This function is used to add a text string to the chart.elements()Returns the Enumeration of floating text strings added to the chart.voidRemoves a text string from a chart.voidRemoves all the floating text strings from the chart.voidset(Enumeration elements) Adds a list of floating text strings in the chart.
-
Method Details
-
add
This function is used to add a text string to the chart.Associated QbChart property: INSERT_TEXT
- Parameters:
t- The ITextString object containing information about the string.- See Also:
-
remove
Removes a text string from a chart.Associated QbChart property: REMOVE_TEXT
- Parameters:
t- The ITextString object containing information about the string that needs to be removed.- See Also:
-
removeAll
void removeAll()Removes all the floating text strings from the chart.Associated QbChart property: REMOVE_ALLTEXT
-
elements
Enumeration elements()Returns the Enumeration of floating text strings added to the chart.Associated QbChart property: TEXTLIST
- Returns:
- The Enumeration object containing the ITextString objects. Each element in the enumeration is of type quadbase.util.ITextString
- See Also:
-
set
Adds a list of floating text strings in the chart. Each element in the input Enumeration should be of type quadbase.util.ITextString.- Parameters:
elements- The list containing the text strings.- See Also:
-