'宣言 Public Property BorderStyleRow As Infragistics.Win.UIElementBorderStyle
public Infragistics.Win.UIElementBorderStyle BorderStyleRow {get; set;}
このプロパティは、指定したオーバーライドによって制御されるバンドまたはグリッドの行の境界線の外観を設定するために使用されます。複数の線スタイルから選択できます。すべてのオペレーティング システムですべてのスタイルが使用可能ではないことに注意してください。プログラムが実行中の OS のバージョンが特定の線スタイルをサポートしない場合、そのスタイルで書式設定した境界線は、実線を使用して描画されます。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button58_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button58.Click ' Properties set on the layout's override effect the whole grid. They are grid-wide ' settings. Me.UltraGrid1.DisplayLayout.Override.BorderStyleRow = UIElementBorderStyle.Raised Me.UltraGrid1.DisplayLayout.Override.BorderStyleCell = UIElementBorderStyle.Inset Me.UltraGrid1.DisplayLayout.Override.BorderStyleHeader = UIElementBorderStyle.Raised ' You can override those grid-wide settings for a particular band by setting those ' properties on the band's override. Me.ultraGrid1.DisplayLayout.Bands(1).Override.BorderStyleRow = UIElementBorderStyle.Solid Me.ultraGrid1.DisplayLayout.Bands(1).Override.BorderStyleCell = UIElementBorderStyle.Solid Me.ultraGrid1.DisplayLayout.Bands(1).Override.BorderStyleHeader = UIElementBorderStyle.Solid End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button58_Click(object sender, System.EventArgs e) { // Properties set on the layout's override effect the whole grid. They are grid-wide // settings. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = UIElementBorderStyle.Raised; this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = UIElementBorderStyle.Inset; this.ultraGrid1.DisplayLayout.Override.BorderStyleHeader = UIElementBorderStyle.Raised; // You can override those grid-wide settings for a particular band by setting those // properties on the band's override. this.ultraGrid1.DisplayLayout.Bands[1].Override.BorderStyleRow = UIElementBorderStyle.Solid; this.ultraGrid1.DisplayLayout.Bands[1].Override.BorderStyleCell = UIElementBorderStyle.Solid; this.ultraGrid1.DisplayLayout.Bands[1].Override.BorderStyleHeader = UIElementBorderStyle.Solid; }