Version

DisplayStyle Property

Gets/sets the display style for the control, i.e., standard or Windows Vista.
Syntax
'Declaration
 
Public Property DisplayStyle As UltraTreeDisplayStyle
public UltraTreeDisplayStyle DisplayStyle {get; set;}
Remarks

This property determines the defaults for certain display and behaviors of the tree. Setting this property to WindowsVista will make the tree look more like the tree in Windows Explorer on the Windows Vista operating system.

Example
Imports Infragistics.Win.UltraWinTree

' Set the DisplayStyle of the tree to Windows Vista.
Me.ultraTree1.DisplayStyle = UltraTreeDisplayStyle.WindowsVista
using Infragistics.Win.UltraWinTree;

// Set the DisplayStyle of the tree to Windows Vista.
this.ultraTree1.DisplayStyle = UltraTreeDisplayStyle.WindowsVista;
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