'宣言 Public Enum AllowGroupMoving Inherits System.Enum
public enum AllowGroupMoving : System.Enum
メンバ | 解説 |
---|---|
Default | デフォルトを使用します。オブジェクトの親の設定が使用されます。 |
NotAllowed | 不可。ユーザーはグループを移動できません。 |
WithinBand | バンド内。ユーザーはグループを同一バンド内で移動できます。 |
WithinGroup | グループ内。ユーザーはグループを同一グループ内で移動できます。このオプションは UltraGridBand.RowLayoutStyle RowLayoutStyle が GroupLayout に設定された時だけに対応されます。 |
AllowGroupMoving 列挙体は、オーバーライドの UltraGridOverride.AllowGroupMoving プロパティを指定するために使用されます。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button4_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button4.Click ' Disallow users to move groups. Me.UltraGrid1.DisplayLayout.Override.AllowGroupMoving = AllowGroupMoving.NotAllowed ' You can override above grid-wide settings on a particular band by setting the ' property in question to a non-default value in the Override object of that ' band. Me.UltraGrid1.DisplayLayout.Bands(0).Override.AllowGroupMoving = AllowGroupMoving.WithinBand End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button4_Click(object sender, System.EventArgs e) { // Disallow users to move groups. this.ultraGrid1.DisplayLayout.Override.AllowGroupMoving = AllowGroupMoving.NotAllowed; // You can override above grid-wide settings on a particular band by setting the // property in question to a non-default value in the Override object of that // band. this.ultraGrid1.DisplayLayout.Bands[0].Override.AllowGroupMoving = AllowGroupMoving.WithinBand; }