Called when tooltip is visible and tests if the given mouse location (in control space) is valid (is over the content). The location. True if tooltip can be still visible, otherwise false.
(ref Float2 location)
| 1133 | /// <param name="location">The location.</param> |
| 1134 | /// <returns>True if tooltip can be still visible, otherwise false.</returns> |
| 1135 | public virtual bool OnTestTooltipOverControl(ref Float2 location) |
| 1136 | { |
| 1137 | return ContainsPoint(ref location) && ShowTooltip; |
| 1138 | } |
| 1139 | |
| 1140 | #endregion |
| 1141 |