# GraffitiTooltip
Class Inherits GraffitiSuite.BaseObject
## About
GraffitiTimeline is a powerful timeline display component designed to allow your users to view tasks in a time-oriented mechanism.Features:
*
Locale support
*
Grouping
*
Orientation customization
*
Major and minor labels
*
Custom Styling
*
Rolling mode to track current time
*
User editing
*
Zoom
*
Point, Box, and Line item types
## Preview





Previous
Next
## Event Definitions
| Name | 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
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Add | item as GraffitiTooltipItem | (None) | Adds the specified item. |
| BindTo | item as GraffitiTooltipItem <br> control as DesktopUIControl | (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. |
| Constructor | (None) | (None) | (None) |
| Item | parent as DesktopUIControl | GraffitiTooltipItem | Returns the item at the specified index within the internal array. |
| Item | tooltip as GraffitiTooltipItem | Integer | Returns the item at the specified index within the internal array. |
| Item | index as Integer | GraffitiTooltipItem | Returns the item at the specified index within 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 <br> control as DesktopUIControl | (None) | Unbinds the tooltip from the specified control. |