GrapeCity SPREAD for Windows Forms 11.0J
Groups プロパティ


最上位グループ オブジェクトのリストを取得します。
構文
'Declaration
 
Public ReadOnly Property Groups As ArrayList
'使用法
 
Dim instance As GroupDataModel
Dim value As ArrayList
 
value = instance.Groups
public ArrayList Groups {get;}

プロパティ値

グループを含む ArrayList
次のサンプルコードは、最初のグループの列インデックスを返します。
fpSpread1.AllowColumnMove = true;
fpSpread1.ActiveSheet.GroupBarInfo.Visible = true;
fpSpread1.ActiveSheet.AllowGroup = true;

 private void button1_Click(object sender, EventArgs e)
        {
            FarPoint.Win.Spread.Model.GroupDataModel gdm;
            gdm = (FarPoint.Win.Spread.Model.GroupDataModel)fpSpread1.ActiveSheet.Models.Data;
            textBox1.Text = ((FarPoint.Win.Spread.Model.Group)gdm.Groups[0]).Column.ToString();         
        }
FpSpread1.AllowColumnMove = True
FpSpread1.ActiveSheet.GroupBarInfo.Visible = True
FpSpread1.ActiveSheet.AllowGroup = True

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim gdm As FarPoint.Win.Spread.Model.GroupDataModel
        gdm = FpSpread1.ActiveSheet.Models.Data
        TextBox1.Text = gdm.Groups(0).Column.ToString()
    End Sub
参照

GroupDataModel クラス
GroupDataModel メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.