Version

AppearancesSmall Property (UltraExplorerBarGroupSettings)

Returns the UltraExplorerBarGroupAppearances object that contains appearance settings for use for the group when small images are being rendered.
Syntax
'Declaration
 
Public ReadOnly Property AppearancesSmall As UltraExplorerBarGroupAppearances
public UltraExplorerBarGroupAppearances AppearancesSmall {get;}
Remarks

If large images are being displayed then the AppearancesLarge property is used.

Example
The following code sets a a few properties on a group's appearance depending on whether the group is Selected, Active, Expanded or has a CheckedItem.

Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button25_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button25.Click

		' Set the font to bold for each group that is Selected, Active or Expanded.  
		' For each Group that contains a Checked Item, set the font to Italic.
		Dim group As UltraExplorerBarGroup

		For Each group In Me.ultraExplorerBar1.Groups
			If (group.Selected = True Or group.Active = True Or group.Expanded = True) Then
				group.Settings.AppearancesSmall.Appearance.FontData.Bold = DefaultableBoolean.True
			End If

			If (Not group.CheckedItem Is Nothing) Then
				group.Settings.AppearancesSmall.Appearance.FontData.Italic = DefaultableBoolean.True
			End If
		Next

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button25_Click(object sender, System.EventArgs e)
		{
			// Set the font to bold for each group that is Selected, Active or Expanded.  
			// For each Group that contains a Checked Item, set the font to Italic.
			foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups)
			{
				if (group.Selected		== true		||
					group.Active		== true		||
					group.Expanded		== true)
					group.Settings.AppearancesSmall.Appearance.FontData.Bold = DefaultableBoolean.True;


				if (group.CheckedItem != null)
					group.Settings.AppearancesSmall.Appearance.FontData.Italic = DefaultableBoolean.True;
			}
		}
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