PowerTools SPREAD for ASP.NET 8.0J
GetDirectAltRowName メソッド (INamedStyleSupport)

設定する交互行のスタイルのインデックス(0からAltRowCount-1までの値)
交互行スタイルのスタイル名を取得します。
構文
'Declaration
 
Function GetDirectAltRowName( _
   ByVal index As Integer _
) As String
string GetDirectAltRowName( 
   int index
)

パラメータ

index
設定する交互行のスタイルのインデックス(0からAltRowCount-1までの値)

戻り値の型

指定した交互行インデックスのスタイル名を含むString。指定した交互行インデックスに名前付きスタイルが割り当てられていない場合は空の文字列。

次のサンプルコードは、スタイルモデルで使用されるスタイルの名前を返します。
FarPoint.Web.Spread.Model.INamedStyleSupport ins; 
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("StyleHeaders"); 
ns.BackColor = Color.LightBlue; 
FpSpread1.NamedStyles.Add(ns); 
FpSpread1.ActiveSheetView.ColumnHeader.RowCount = 5; 
ins = (FarPoint.Web.Spread.Model.INamedStyleSupport)FpSpread1.ActiveSheetView.ColumnHeaderStyleModel; 
ins.SetDirectAltRowName(1, "StyleHeaders"); 
Response.Write("The name of the style used to change the color in the headers is " + ins.GetDirectAltRowName(1).ToString());

Dim ins As FarPoint.Web.Spread.Model.INamedStyleSupport
Dim ns As New FarPoint.Web.Spread.NamedStyle("StyleHeaders")
ns.BackColor = Color.LightBlue
FpSpread1.NamedStyles.Add(ns)
FpSpread1.ActiveSheetView.ColumnHeader.RowCount = 5
ins = FpSpread1.ActiveSheetView.ColumnHeaderStyleModel
ins.SetDirectAltRowName(1, "StyleHeaders")
Response.Write("The name of the style used to change the color in the headers is " & ins.GetDirectAltRowName(1).ToString())
参照

INamedStyleSupport インタフェース
INamedStyleSupport メンバ

 

 


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