CellSpacing プロパティは、指定されたオーバーライドによって制御されるバンドまたはグリッドで各セルを囲む行の空の領域量を決定します。セル間のスペースによって、UltraGridRow オブジェクトに指定した色、透過、または背景画像と共に基本行の背景が表示可能になります。セル スペースは、セルのすべてのサイド (上下左右) に均等にスペースを追加します。
CellSpacing を -1 の値に設定すると、オーバーライド階層で次に最も高いオブジェクトからの値を使用します。
このプロパティはセルの内側には効果がありません。セルの内側のスペースを制御するには、CellPadding プロパティを使用します。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button31_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button31.Click ' Cell spacing indicates the amount of space in pixels between cells. ' Set the CellSpacing on the layout's Override to 2. All cells in the UltraGrid will ' have cell spacing of 2 pixels. Me.UltraGrid1.DisplayLayout.Override.CellSpacing = 2 ' 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.CellSpacing = 4 End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button31_Click(object sender, System.EventArgs e) { // Cell spacing indicates the amount of space in pixels between cells. // Set the CellSpacing on the layout's Override to 2. All cells in the UltraGrid will // have cell spacing of 2 pixels. this.ultraGrid1.DisplayLayout.Override.CellSpacing = 2; // 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.CellSpacing = 4; }