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 Type
    Method
    Description
    void
    This function is used to add a text string to the chart.
    Returns the Enumeration of floating text strings added to the chart.
    void
    Removes a text string from a chart.
    void
    Removes all the floating text strings from the chart.
    void
    set(Enumeration elements)
    Adds a list of floating text strings in the chart.
  • Method Details

    • add

      void add(ITextString t)
      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

      void remove(ITextString t)
      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

      void set(Enumeration elements)
      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: