PowerTools SPREAD for ASP.NET 8.0J
GroupingPolicy 列挙体

Spreadコンポーネントでグループ化が行われたときに行をどのように折りたたむ/展開するかを示すグループ化ポリシーを指定します。
構文
'Declaration
 
Public Enum GroupingPolicy 
   Inherits System.Enum
public enum GroupingPolicy : System.Enum 
メンバ
メンバ説明
CollapseAllグループ化されたときにすべての行を折りたたみます。
ExpandAllグループ化されたときにすべての行を展開します。
ExpandParentsグループ化されたときに親行をすべて展開し、最下位レベルだけを折りたたみます。
NotSetグループ化ポリシーを設定しません。これはGroupingPolicyプロパティのデフォルト設定です。
次のサンプルコードは、GroupingPolicy列挙体を設定します。
FpSpread1.ActiveSheetView.AllowColumnMove = true; 
FpSpread1.ActiveSheetView.GroupBarVisible = true; 
FpSpread1.ActiveSheetView.AllowGroup = true;
FpSpread1.ActiveSheetView.GroupingPolicy = FarPoint.Web.Spread.Model.GroupingPolicy.ExpandAll;
FpSpread1.ActiveSheetView.AllowColumnMove = True
FpSpread1.ActiveSheetView.GroupBarVisible = True
FpSpread1.ActiveSheetView.AllowGroup = True
FpSpread1.ActiveSheetView.GroupingPolicy = FarPoint.Web.Spread.Model.GroupingPolicy.ExpandAll
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.Model.GroupingPolicy

参照

FarPoint.Web.Spread.Model 名前空間

 

 


© 2003-2015, GrapeCity inc. All rights reserved.