PowerTools SPREAD for ASP.NET 8.0J
NamedStyle コンストラクタ(String,String,StyleInfo)

新しいスタイルの名前(NamedStyleオブジェクト)
新しいスタイルの親(NamedStyleオブジェクト)
StyleInfoオブジェクト
StyleInfoオブジェクト、名前、および親名を指定して、新しいカスタムスタイル (NamedStyleオブジェクト)を作成します。
構文
'Declaration
 
Public Function New( _
   ByVal name As String, _
   ByVal parentName As String, _
   ByVal style As StyleInfo _
)
public NamedStyle( 
   string name,
   string parentName,
   StyleInfo style
)

パラメータ

name
新しいスタイルの名前(NamedStyleオブジェクト)
parentName
新しいスタイルの親(NamedStyleオブジェクト)
style
StyleInfoオブジェクト
この例では、新しいカスタムスタイルを作成します。
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo();
si.BackColor = Color.Yellow;
FarPoint.Web.Spread.NamedStyle nstyleheaders = new FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault", si);
object o;
nstyleheaders.Font.Bold = true;
nstyleheaders.Font.Size = new FontUnit(FontSize.Large);
o = nstyleheaders.Clone();
FpSpread1.NamedStyles.Add(nstyleheaders);
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = nstyleheaders;
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = (FarPoint.Web.Spread.StyleInfo)o;
Dim si As New FarPoint.Web.Spread.StyleInfo
si.BackColor = Color.Yellow
Dim nstyleheaders As New FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault", si)
Dim o As Object
nstyleheaders.Font.Bold = True
nstyleheaders.Font.Size = New FontUnit(FontSize.Large)
o = nstyleheaders.Clone()
FpSpread1.NamedStyles.Add(nstyleheaders)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = nstyleheaders
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = o
参照

NamedStyle クラス
NamedStyle メンバ
オーバーロード一覧

 

 


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