Version

ItemTipStyle Enumeration

Enumeration which contains constants for the UltraListViewItemSettings object's UltraListViewItemSettings.TipStyle property.
Syntax
'Declaration
 
Public Enum ItemTipStyle 
   Inherits System.Enum
public enum ItemTipStyle : System.Enum 
Members
MemberDescription
AutomaticTooltips are displayed similarly to how they are displayed in Windows Explorer. When the end user hovers the cursor over an UltraListViewItem, the value of the UltraListViewItemBase.Text property is displayed (if it is not fully visible in the user interface).



Additionally, the value of the UltraListViewColumnBase.TextResolved property of the UltraListViewSubItemColumn, along with the value of the UltraListViewItemBase.Text property of the corresponding UltraListViewSubItem, is displayed for each of the UltraListViewSubItemColumn instances which are to be displayed as determined by the UltraListViewSubItemColumn.VisibleInToolTip and UltraListViewItemSettings.SubItemsVisibleInToolTipByDefault properties. The visible order in which the sub-items are displayed is determined by the UltraListViewSubItemColumn.VisiblePositionInToolTip property. Note that if the UltraListViewItem is disabled, the tooltip is not displayed.
HideNo tooltip is displayed.
ShowAlwaysThe value of the UltraListViewItemBase.Text property of the UltraListViewItem is displayed in a tooltip, regardless of whether it is fully visible in the user interface.
ShowIfNeededWhen the value of the UltraListViewItemBase.Text property of the UltraListViewItem is not fully visible in the user interface, it is displayed in a tooltip. If the UltraListViewItem is disabled, the tooltip is not displayed.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also