Method ShowToolTip
ShowToolTip(PointD?)
Shows the tooltip at the specified location inside the. Location coordinates are in device-independent units.
public virtual IRichToolTip ShowToolTip(PointD? location = null)
Parameters
locationPointD?
Returns
ShowToolTip(object, bool, PointD?)
Shows simple tooltip on the screen.
public IRichToolTip ShowToolTip(object message, bool systemColors = true, PointD? location = null)
Parameters
messageobjectTooltip message.
systemColorsboolIf
true, sets tooltip colors to SystemColorInfo.locationPointD?Location where tooltip will be shown.
Returns
ShowToolTip(object?, object?, MessageBoxIcon?, uint?, PointD?)
Shows tooltip on the screen.
public virtual IRichToolTip ShowToolTip(object? title, object? message, MessageBoxIcon? icon = null, uint? timeoutMilliseconds = null, PointD? location = null)
Parameters
titleobjectTooltip title.
messageobjectTooltip message.
iconMessageBoxIcon?Tooltip standard icon.
timeoutMillisecondsuint?Timeout in milliseconds after which tooltip will be hidden. Optional. If not specified, default timeout value is used. If 0 is specified, tooltip will not be hidden after timeout.
locationPointD?Location where tooltip will be shown.