バージョン

GroupSpacing プロパティ

UltraExplorerBarGroup 間の垂直方向の間隔をピクセル数で取得または設定します。Style が「0 - ExplorerBar」のコントロールにのみ適用されます。
シンタックス
'宣言
 
Public Property GroupSpacing As Integer
public int GroupSpacing {get; set;}
解説

注:UltraExplorerBarGroup のヘッダーに画像が割り当てられていて、その画像の高さがヘッダーよりも大きい場合、画像の上端がヘッダーの範囲を超えます。GroupSpacing プロパティが、画像がその上のグループと重ならないために必要な間隔よりも小さい値に設定されている場合は、重ならないように十分な間隔を提供する値が使用されます。

使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button5.Click

		' Set the style of the control to ExplorerBar and setup columns.  Set the number of 
		' columns based on the width of the control.  Allow a minimum of 100 pixels for each
		' column.
		Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.ExplorerBar
		Me.ultraExplorerBar1.ColumnCount = Math.Max(1, Me.ultraExplorerBar1.Width / 100)


		' Set ColumnSpacing (i.e., the horizontal spacing between columns) to 6 pixels.
		Me.ultraExplorerBar1.ColumnSpacing = 6


		' Set the GroupSpacing (i.e., the vertical spacing between groups) to 10 pixels
		Me.ultraExplorerBar1.GroupSpacing = 10


		' Setup the first group so that it spans all columns.
		If (Me.ultraExplorerBar1.Groups.Count > 0) Then
			Me.ultraExplorerBar1.Groups(0).ColumnsSpanned = Me.ultraExplorerBar1.ColumnCount
		End If

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


		private void button5_Click(object sender, System.EventArgs e)
		{
			// Set the style of the control to ExplorerBar and setup columns.  Set the number of 
			// columns based on the width of the control.  Allow a minimum of 100 pixels for each
			// column.
			this.ultraExplorerBar1.Style			= UltraExplorerBarStyle.ExplorerBar;
			this.ultraExplorerBar1.ColumnCount		= Math.Max(1, this.ultraExplorerBar1.Width / 100);


			// Set ColumnSpacing (i.e., the horizontal spacing between columns) to 6 pixels.
			this.ultraExplorerBar1.ColumnSpacing	= 6;


			// Set the GroupSpacing (i.e., the vertical spacing between groups) to 10 pixels
			this.ultraExplorerBar1.GroupSpacing		= 10;


			// Setup the first group so that it spans all columns.
			if (this.ultraExplorerBar1.Groups.Count > 0)
				this.ultraExplorerBar1.Groups[0].ColumnsSpanned = this.ultraExplorerBar1.ColumnCount;
		}
参照