MaxSelectedRows プロパティは、指定されたオーバーライドによって制御されるバンドまたはグリッドの時間で選択できる行の最大数を決定します。これはグリッド レベルまたはバンド レベルで適用可能な UltraGridOverride オブジェクト プロパティです。バンド レベルで設定すると、バンド内で同時に選択される行数が決定されます。バンド レベルで適用されると、コントロール全体で同時に選択される行数が決定されます。グリッド レベル設定はバンド レベル設定をオーバーライドします。
MaxSelectedRows を 0 に設定することは、同時に選択される行の数に制限がないという意味です。このプロパティを -1 の値に設定すると、オーバーライド階層で次に最も高いオブジェクトからの値を使用します。
このプロパティは行のスクロール領域を個別に操作します。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button48_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button48.Click ' Set the SelectTypeRow to Single so only a single row can be selected at a ' time. Setting it on the layout's Override applies it to the whole grid. Me.UltraGrid1.DisplayLayout.Override.SelectTypeRow = SelectType.Single ' You can override the grid-wide setting (setting on the layout's Override) on a ' particular band by setting the associated properties on that band's Override. ' Following code sets the SelectTypeRow on the band 0 override to allow the user ' to select multiple rows that band. Me.UltraGrid1.DisplayLayout.Bands(0).Override.SelectTypeRow = SelectType.Extended ' You can set the MaxSelectedRows to limit the number of rows the user can select. Me.UltraGrid1.DisplayLayout.Bands(0).Override.MaxSelectedRows = 100 End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button48_Click(object sender, System.EventArgs e) { // Set the SelectTypeRow to Single so only a single row can be selected at a // time. Setting it on the layout's Override applies it to the whole grid. this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = SelectType.Single; // You can override the grid-wide setting (setting on the layout's Override) on a // particular band by setting the associated properties on that band's Override. // Following code sets the SelectTypeRow on the band 0 override to allow the user // to select multiple rows that band. this.ultraGrid1.DisplayLayout.Bands[0].Override.SelectTypeRow = SelectType.Extended; // You can set the MaxSelectedRows to limit the number of rows the user can select. this.ultraGrid1.DisplayLayout.Bands[0].Override.MaxSelectedRows = 100; }