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 TypeMethodDescriptionvoidAdds a new HyperLink into the chart.elements()Returns the list of all hyperlinks added to the chart.gethHint()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.voidRemoves the specified hyperlink from the chart.voidRemoves all the hyperlinks added to the chart.voidset(Enumeration elements) Sets the list of hyperlinks in the chart.
-
Method Details
-
add
Adds a new HyperLink into the chart.Associated QbChart property: HYPERLINK
- Parameters:
l- The HyperLink object containing the link information.- See Also:
-
match
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
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 functionAssociated QbChart property: HYPERLINKLIST
- Returns:
- The Enumeration of all Hyperlinks that exist in the chart.
-
set
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:
-