MESCIUS SPREAD for ASP.NET 10.0J
GetDirectName メソッド (INamedStyleSupport)

モデル内のセルに対する行インデックス。列全体またはモデル デフォルトを指定する場合は -1 を使用します。
モデル内のセルに対する列インデックス。行全体またはデフォルト モデルを指定する場合は -1 を使用します。
セル、列、行、またはモデルデフォルトに割り当てられた 直接スタイルの名前を取得します。
構文
'Declaration
 
Function GetDirectName( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As String
string GetDirectName( 
   int row,
   int column
)

パラメータ

row
モデル内のセルに対する行インデックス。列全体またはモデル デフォルトを指定する場合は -1 を使用します。
column
モデル内のセルに対する列インデックス。行全体またはデフォルト モデルを指定する場合は -1 を使用します。

戻り値の型

スタイル名を含むString
次のサンプルコードは、スタイルモデルで使用されるスタイルの名前を返します。
FarPoint.Web.Spread.Model.INamedStyleSupport ins; 
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("StyleData"); 
ns.BackColor = Color.LightBlue; 
FpSpread1.NamedStyles.Add(ns); 
ins = (FarPoint.Web.Spread.Model.INamedStyleSupport)FpSpread1.ActiveSheetView.StyleModel; 
ins.SetDirectName(1, 1, "StyleData"); 
Response.Write("The name of the style used to change the color in the cell is " + ins.GetDirectName(1, 1).ToString()); 
Dim ins As FarPoint.Web.Spread.Model.INamedStyleSupport
Dim ns As New FarPoint.Web.Spread.NamedStyle("StyleData")
ns.BackColor = Color.LightBlue
FpSpread1.NamedStyles.Add(ns)
ins = FpSpread1.ActiveSheetView.StyleModel
ins.SetDirectName(1, 1, "StyleData")
Response.Write("The name of the style used to change the color in the cell is " & ins.GetDirectName(1, 1).ToString())
参照

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

 

 


© MESCIUS inc. All rights reserved.