Package quadbase.util

Interface IFloatingLineSet


public interface IFloatingLineSet
This interface is used to add/remove poly-lines in the main chart window. A poly-line is a set of connected line segments. A handle to an object that implements this interface can be obtained by calling the gethFloatingLineSet method defined in QbChart.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This function adds a new poly-line to the chart.
    Returns the Enumeration of all the poly-lines defined in the chart.
    void
    This function removes the specified poly-line from the chart.
    void
    Removes all the poly-lines currently defined in the chart.
    void
    set(Enumeration elements)
    Sets a list of poly-line objects in a chart.
  • Method Details

    • add

      void add(PolyLine t)
      This function adds a new poly-line to the chart.

      Associated QbChart property: INSERT_POLYLINE

      Parameters:
      t - The PolyLine object defining a poly-line to add.
      See Also:
    • remove

      void remove(PolyLine t)
      This function removes the specified poly-line from the chart.

      Associated QbChart property: REMOVE_POLYLINE

      Parameters:
      t - The poly-line object to remove from the chart.
      See Also:
    • removeAll

      void removeAll()
      Removes all the poly-lines currently defined in the chart.

      Associated QbChart property: REMOVE_ALLPOLYLINE

      See Also:
    • elements

      Enumeration elements()
      Returns the Enumeration of all the poly-lines defined in the chart.

      Associated QbChart property: POLYLINELIST

      Returns:
      The Enumeration object containing all the poly-lines. Each object in the Enumeration is of type quadbase.util.PolyLine
    • set

      void set(Enumeration elements)
      Sets a list of poly-line objects in a chart.
      Parameters:
      elements - The list of poly-line objects. Each object in the list should be of type quadbase.util.PolyLine