PowerTools SPREAD for ASP.NET 8.0J
SheetSkin コンストラクタ(SheetSkin)

コピー元のSheetSkin、DefaultSkins.Defaultからコピーする場合はNull
新しいスキンを作成し、ソースのスキンからプロパティの値をコピーします。
構文
'Declaration
 
Public Function New( _
   ByVal source As SheetSkin _
)
public SheetSkin( 
   SheetSkin source
)

パラメータ

source
コピー元のSheetSkin、DefaultSkins.Defaultからコピーする場合はNull
解説
SheetSkinクラスのインスタンスを初期化し、コピー元のソースSheetSkinからのプロパティ値を使用してそれを初期化します。
次のサンプルコードは、新しいスキンを作成してコンポーネントに適用します。
FarPoint.Web.Spread.SheetSkin sk = new FarPoint.Web.Spread.SheetSkin("TestSkin", Color.LightGoldenrodYellow, Color.Wheat,
Color.DarkGreen, 2, Color.YellowGreen, GridLines.Both, Color.Thistle, Color.BlanchedAlmond, Color.Wheat, Color.DarkBlue, Color.Empty,
Color.Empty, false, false, true, true, true);

FarPoint.Web.Spread.SheetSkin testskin = new FarPoint.Web.Spread.SheetSkin(sk);
testskin.Apply(FpSpread1);
Dim sk As New FarPoint.Web.Spread.SheetSkin("TestSkin", Color.LightGoldenrodYellow, Color.Wheat, Color.DarkGreen, 2, Color.YellowGreen,
GridLines.Both, Color.Thistle, Color.BlanchedAlmond, Color.Wheat, Color.DarkBlue, Nothing, Nothing, False, False, True, True,
True)

Dim testskin As New FarPoint.Web.Spread.SheetSkin(sk)
testskin.Apply(FpSpread1)
参照

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

 

 


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