MESCIUS SPREAD for Windows Forms 15.0J
AltRowCount プロパティ (BaseSheetStyleModel)
使用例 

モデル内の交互行のスタイルの数を取得または設定します。
構文
'宣言
 
Public Overridable Property AltRowCount As Integer
public virtual int AltRowCount {get; set;}

プロパティ値

交互行の数を表す Integer(常に0を返します)
解説
この実装は何もせずに常に0を返します。
使用例
次のサンプルコードは、モデル内の交互行の数を設定します。
FarPoint.Win.Spread.Model.BaseSheetStyleModel styleModel;
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
sInfo.BackColor = Color.LightBlue;
styleModel = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
styleModel.AltRowCount = 3;
styleModel.SetDirectAltRowInfo(1, sInfo);
Dim styleModel As FarPoint.Win.Spread.Model.BaseSheetStyleModel
Dim sInfo As New FarPoint.Win.Spread.StyleInfo()
sInfo.BackColor = Color.LightBlue
styleModel = fpSpread1.ActiveSheet.Models.Style
styleModel.AltRowCount = 3
styleModel.SetDirectAltRowInfo(1, sInfo)
参照

BaseSheetStyleModel クラス
BaseSheetStyleModel メンバ

 

 


© MESCIUS inc. All rights reserved.