property Schedule.AnchorFromPoint (X as OLE_XPOS_PIXELS, Y as OLE_YPOS_PIXELS) as String
Retrieves the identifier of the anchor from point.

TypeDescription
X as OLE_XPOS_PIXELS A single that specifies the current X location of the mouse pointer. The x values is always expressed in client coordinates.
Y as OLE_YPOS_PIXELS A single that specifies the current Y location of the mouse pointer. The y values is always expressed in client coordinates.
String A String expression that specifies the identifier (id) of the anchor element from the point, or empty string if there is no anchor element at the cursor
the AnchorFromPoint property to determine the identifier of the anchor from the point.  Use the <a id;options> anchor elements to add hyperlinks to cell's caption. The control fires the AnchorClick event  when the user clicks an anchor element.  Use the ShowToolTip method to show the specified tooltip at given or cursor coordinates.  The MouseMove event is generated continually as the mouse pointer moves across the control. For instance, if the user clicks the anchor <a1>anchor</a>, the control fires the AnchorClick event, where the AnchorID parameter is 1, and the Options parameter is empty. Also, if the user clicks the anchor <a 1;yourextradata>anchor</a>, the AnchorID parameter of the AnchorClick event is 1, and the Options parameter is "yourextradata".

The LongLabel, ExtraLabel properties of the Event supports <a> elements.