'宣言 Public Property ActiveCellAppearance As Infragistics.Win.AppearanceBase
public Infragistics.Win.AppearanceBase ActiveCellAppearance {get; set;}
ActiveCellAppearance プロパティは、アクティブセルの外観を指定するために使用されます (ActiveCell プロパティで決定される)。ActiveCellAppearance プロパティに Appearance オブジェクトを割り当てると、そのオブジェクトのプロパティは、アクティブセルになるセルに適用されます。ActiveCellAppearance プロパティを使用すると、アクティブ セルに現在割り当てられている外観関連のプロパティを調べたり変更したりできます。次に例を示します。
UltraWinGrid1.Override.ActiveCellAppearance.BackColor = vbBlue
ActiveCellAppearance は UltraGridOverride オブジェクトのプロパティなので、階層的なレコードセットの各レベルでアクティブなセルに異なる外観を与えることができます。バンドごとにアクティブ セルの外観を変更するには、各 UltraGridBand オブジェクトに独自の UltraGridOverride オブジェクトを割り当てます。バンドにオーバーライドが割り当てられていない場合は、オーバーライド階層の1つ上のレベルのオーバーライドを使用して、そのバンドのプロパティが決定されます。つまり、オーバーライドを持たないバンドはその親バンドのオーバーライドを使用し、最上位のバンドはグリッドのオーバーライドを使用します。したがって、最上位のバンドに独自のオーバーライドが設定されていない場合、アクティブ セルはグリッドレベルの ActiveCellAppearance の設定を使用します。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button27_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button27.Click ' ActiveCellAppearance appearance applies to the cell that's active in the UltraGrid. ' This is the cell that's returned by ActiveCell property off the UltraGrid. ' Set the ActiveCellAppearance on the layout's Override so that it applies to the active ' cell in any band. Me.UltraGrid1.DisplayLayout.Override.ActiveCellAppearance.BackColor = Color.LightYellow ' You can override that grid-wide setting for a particular band by setting it on the ' override of that band. Me.UltraGrid1.DisplayLayout.Bands(0).Override.ActiveCellAppearance.BackColor = Color.Orange End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button27_Click(object sender, System.EventArgs e) { // ActiveCellAppearance appearance applies to the cell that's active in the UltraGrid. // This is the cell that's returned by ActiveCell property off the UltraGrid. // Set the ActiveCellAppearance on the layout's Override so that it applies to the active // cell in any band. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance.BackColor = Color.LightYellow; // You can override that grid-wide setting for a particular band by setting it on the // override of that band. this.ultraGrid1.DisplayLayout.Bands[0].Override.ActiveCellAppearance.BackColor = Color.Orange; }