これは親レコード A の最後の子行と親レコード B の最初の子行の垂直の間隔で、親レコード B は親レコード A の後の次の兄弟レコードになります。
InterbandSpacing プロパティは、階層的なレコード セットでバンド間の間隔を決定します。特に、ひとつのバンドの最終の行とバンドの子バンドの最初の行の垂直間隔を決定します。値が高くなるほど、バンドと子の間隔は大きくなります。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button57_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button57.Click ' Set the InterBandSpacing to 20. Me.UltraGrid1.DisplayLayout.InterBandSpacing = 20 End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button57_Click(object sender, System.EventArgs e) { // Set the InterBandSpacing to 20. this.ultraGrid1.DisplayLayout.InterBandSpacing = 20; }