MESCIUS SPREAD for Windows Forms 15.0J
NamedStyle コンストラクタ(String,String,StyleInfo)
使用例 

新しいスタイルの名前(NamedStyleオブジェクト)
新しいスタイルの親(NamedStyleオブジェクト)
StyleInfoオブジェクト
StyleInfoオブジェクト、名前、および親名を指定して、新しいカスタムスタイル (NamedStyleオブジェクト)を作成します。
構文
'宣言
 
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オブジェクト
使用例
次のサンプルコードは、新しいNamedStyleオブジェクトを作成します。
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.BackColor = Color.Yellow;
FarPoint.Win.Spread.NamedStyle parent = new FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault", si);
parent.Font = new Font("Comic Sans Serif", 12);
fpSpread1.NamedStyles.Add(parent);
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = parent;
fpSpread1.ActiveSheet.RowHeader.DefaultStyle = parent;
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.BackColor = Color.Yellow
Dim parent As New FarPoint.Win.Spread.NamedStyle("StyleHeaders", "HeaderDefault", si)
parent.Font = New Font("Comic Sans Serif", 12)
FpSpread1.NamedStyles.Add(parent)
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = parent
FpSpread1.ActiveSheet.RowHeader.DefaultStyle = parent
参照

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

 

 


© MESCIUS inc. All rights reserved.