Package quadbase.util

Interface IHyperLinkSet


public interface IHyperLinkSet
Returns a handle to the set of hyperlink properties. Properties of hyperlinks can be directly changed by calling methods on this interface. A handle to an object that implements this interface can be obtained by calling the gethHyperLinks method defined in QbChart.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Adds a new HyperLink into the chart.
    Returns the list of all hyperlinks added to the chart.
    Gets a handle to an IHint object which can be used to modify the hint properties associated with hyperlinks.
    Finds the closest available match for the given HyperLink object.
    void
    Removes the specified hyperlink from the chart.
    void
    Removes all the hyperlinks added to the chart.
    void
    set(Enumeration elements)
    Sets the list of hyperlinks in the chart.
  • Method Details

    • add

      void add(HyperLink l)
      Adds a new HyperLink into the chart.

      Associated QbChart property: HYPERLINK

      Parameters:
      l - The HyperLink object containing the link information.
      See Also:
    • match

      HyperLink match(HyperLink l)
      Finds the closest available match for the given HyperLink object.
      Parameters:
      l - The HyperLink object to match.
      Returns:
      The closest HyperLink that matches the input value.
    • removeAll

      void removeAll()
      Removes all the hyperlinks added to the chart.
    • remove

      void remove(HyperLink l)
      Removes the specified hyperlink from the chart.

      Associated QbChart property: DEL_HYPERLINK

      Parameters:
      l - The HyperLink object to remove.
      See Also:
    • elements

      Enumeration elements()
      Returns the list of all hyperlinks added to the chart. Surface Chart does not support this function

      Associated QbChart property: HYPERLINKLIST

      Returns:
      The Enumeration of all Hyperlinks that exist in the chart.
    • set

      void set(Enumeration elements)
      Sets the list of hyperlinks in the chart. Surface Chart does not support this function
      Parameters:
      elements - The list of all hyperlinks to add. Each element in the list should be of type quadbase.util.HyperLink
    • gethHint

      IHint gethHint()
      Gets a handle to an IHint object which can be used to modify the hint properties associated with hyperlinks.
      Returns:
      A handle to IHint for setting hint properties.
      See Also: