ToolTipsFactory

Object Model - Common Properties - DisplayBounds

Gets or sets a value which defines into which area of the screen the tooltips should be confined.

[Visual Basic]
Public Property DisplayBounds As ToolTipsFactory.Enums.ToolTipPlayground
[C#]
public ToolTipsFactory.Enums.ToolTipPlayground DisplayBounds {get; set;}

Property Value

A value from the ToolTipsFactory.Enums.ToolTipPlayground enumeration. Default value is ToolTipPlayground.Screen.

Overridable

Layout-file

Description

This property defines to which areas of the screen the displayed tooltips should be confined. 

By default the tooltips are allowed to appear everywhere on the screen, covering everything below them (DisplayBounds=ToolTipPlayground.Screen).

The other possible value (DisplayBounds=ToolTipPlayground.WorkingArea) limits this area to the desktop area of the display, excluding taskbars, docked windows, and docked tool bars. 

This property is only available at the component-level. The assigned value applies to the tooltips of all controls on the same form:

'Change the display-bounds for the tooltips of this component.

Me.MultiLine.GetMultiLineToolTip(Panel1).DisplayBounds = ToolTipPlayground.WorkingArea