See Also
Enumerations
Name | Values |
This class exposes no enumerations. | |
Constants
Name | Type | Value |
This class exposes no constants. | | |
Events
Definition | Parameters | Return Type | Description |
ItemHidden | item as GraffitiTooltipItem | None | Raised when a GraffitiTooltipItem has been hidden either by losing focus or calling the Hide method. |
ItemShown | item as GraffitiTooltipItem | None | Raised when a GraffitiTooltipItem has become visible on the display. |
Methods
Definition | Parameters | Return Type | Description |
Add | item as GraffitiTooltipItem | None | Adds the specified item. |
BindTo | item as GraffitiTooltipItem | None | Attempts to automatically bind to the specified control. If that control implements the events needed for the TooltipItem to function, you will receive exceptions. |
control as DesktopUIControl |
Item | index as Integer | GraffitiTooltipItem | Returns the item at the specified index within the internal array. |
Item | parent as DesktopUIControl | GraffitiTooltipItem | Returns the item bound to the specified DesktopUIControl. |
Item | tooltip as GraffitiTooltipItem | Integer | Returns the index of the specified item in the internal array. |
LastIndex | None | Integer | The index of the last item in the internal array. |
RemoveAll | None | None | Remove and destroy all added items. |
RemoveAt | index as Integer | None | Remove and destroy the item at the specified index. |
UnbindFrom | item as GraffitiTooltipItem | None | Unbinds the tooltip from the specified control. |
control as DesktopUIControl |
Properties
Name | Type | Default Value | Description |
This class exposes no properties. | | | |
Examples
tooltipController.Add( new GraffitiTooltipItem( ListBox1, "This is a ListBox" )
var tooltip as GraffitiTooltipItem = tooltipController.Item( ListBox1 )
if tooltip <> nil then tooltip.Show
var tooltip as GraffitiTooltipItem = tooltipController.Item( ListBox1 )
if tooltip <> nil then tooltip.Hide
Notes
This class currently has no notes.