PowerTools SPREAD for Windows Forms 8.0J
ActiveSkin プロパティ


シートのスキンを取得または設定します。
構文
'Declaration
 
Public Property ActiveSkin As SheetSkin
'使用法
 
Dim instance As SheetView
Dim value As SheetSkin
 
instance.ActiveSkin = value
 
value = instance.ActiveSkin
public SheetSkin ActiveSkin {get; set;}

プロパティ値

シートスキンを含むSheetSkinオブジェクト
次のサンプルコードでは、このメンバを使用して、シートのアクティブスキンを返しています。
FarPoint.Win.Spread.SheetSkin sk, sk1;
sk = new FarPoint.Win.Spread.SheetSkin("TestSkin", Color.LightBlue, Color.Blue, Color.White, Color.Gray, FarPoint.Win.Spread.GridLines.Both,
Color.Red, Color.Black, Color.Orange, Color.Black, Color.Empty, Color.Empty, true, true, true, true, true);
sk.Apply(fpSpread1);
sk1 = fpSpread1.ActiveSheet.ActiveSkin;
label1.Text = "The name of the active skin is - " + sk1.Name.ToString();
Dim sk, sk1 As FarPoint.Win.Spread.SheetSkin
sk = New FarPoint.Win.Spread.SheetSkin("TestSkin", Color.LightBlue, Color.Blue, Color.White, Color.Gray, FarPoint.Win.Spread.GridLines.Both,
Color.Red, Color.Black, Color.Orange, Color.Black, Nothing, Nothing, True, True, True, True, True)
sk.Apply(FpSpread1)
sk1 = FpSpread1.ActiveSheet.ActiveSkin
Label1.Text = "The name of the active skin is - " & sk1.Name.ToString()
参照

SheetView クラス
SheetView メンバ
SheetSkin クラス
DefaultSkins クラス

開発者ガイド

シートスキンの適用

 

 


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