Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The OnApptHover event fires when the user hovers over an appointment, and keeps the cursor still, for a brief moment. The time necessary to hold still is determined by the HoverTime property.

The ApptID parameter provides the unique ID of the appointment involved and can be used directly with any properties requiring an appointment ID. The point is relative to the top left corner of the OLE Schedule control.

...

Code Block
Transfer Param1 to ApptID
Transfer Param2 to MousePoint

// Parse the point
X = Field(MousePoint, ",", 1)
Y = Field(MousePoint, ",", 2)

// Showing a popup is appropriate on a hover event
Call ShowApptPopup(ApptID, X, Y)

See Also

OnApptClickOnApptDblClick