Version

ActiveAppearancesEnabled Property

Gets or sets a value that determines whether Appearances for the active state are included in the appearance resolution order.
Syntax
'Declaration
 
Public Property ActiveAppearancesEnabled As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean ActiveAppearancesEnabled {get; set;}
Example
Demonstrates how to disable the cell and row appearances for the Active and Selected states, using the ActiveAppearancesEnabled and SelectedAppearancesEnabled properties.

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Me.UltraGrid1.DisplayLayout.Override.ActiveAppearancesEnabled = DefaultableBoolean.False
    Me.UltraGrid1.DisplayLayout.Override.SelectedAppearancesEnabled = DefaultableBoolean.False
End Sub
private void Form1_Load(object sender, EventArgs e)
{
    this.ultraGrid1.DisplayLayout.Override.ActiveAppearancesEnabled = DefaultableBoolean.False;
    this.ultraGrid1.DisplayLayout.Override.SelectedAppearancesEnabled = DefaultableBoolean.False;
}
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