MESCIUS SPREAD for Windows Forms 15.0J
SheetSkin コンストラクタ(String,Color,Color,Color,Color,GridLines,Color,Color,Color,Color,Color,Color,Boolean,Boolean,Boolean,Boolean,Boolean,String,String,String,String,String,String,Color,Color,Color,Color,AutoFilterMode)
使用例 

スキンの名前
シートの背景色
セルの背景色
セルのテキスト色
グリッド線の色
グリッド線が表示されるかどうか
ヘッダの背景色
ヘッダのテキストの色
選択されているセルの背景色
選択されているセルのテキストの色
偶数番目の行の背景色
奇数番目の行の背景色
フラットなヘッダとデフォルトの3Dヘッダのどちらが表示されるか
フラットなヘッダとデフォルトの3Dヘッダのどちらが表示されるか
ヘッダのフォントを太字にするかどうか
列ヘッダを表示するかどうか
行ヘッダを表示するかどうか
親列ヘッダ
行ヘッダの親
データ領域の親
シートコーナーの親
フィルタバーの親。
フィルタバーヘッダの親。
フィルタバーの背景色。
フィルタバーのテキストの色。
フィルタバーヘッダの背景色。
フィルタバーヘッダのテキストの色。
シートの AutoFilterMode。
指定した設定で新しいスキンを作成します。
構文
'宣言
 
Public Function New( _
   ByVal name As String, _
   ByVal backColor As Color, _
   ByVal cellBackColor As Color, _
   ByVal cellForeColor As Color, _
   ByVal gridLineColor As Color, _
   ByVal gridLines As GridLines, _
   ByVal headerBackColor As Color, _
   ByVal headerForeColor As Color, _
   ByVal selectionBackColor As Color, _
   ByVal selectionForeColor As Color, _
   ByVal evenRowBackColor As Color, _
   ByVal oddRowBackColor As Color, _
   ByVal flatColumnHeader As Boolean, _
   ByVal flatRowHeader As Boolean, _
   ByVal headerFontBold As Boolean, _
   ByVal showColumnHeader As Boolean, _
   ByVal showRowHeader As Boolean, _
   ByVal columnHeaderParent As String, _
   ByVal rowHeaderParent As String, _
   ByVal dataAreaParent As String, _
   ByVal cornerParent As String, _
   ByVal filterBarParent As String, _
   ByVal filterBarHeaderParent As String, _
   ByVal filterBarBackColor As Color, _
   ByVal filterBarForeColor As Color, _
   ByVal filterBarHeaderBackColor As Color, _
   ByVal filterBarHeaderForeColor As Color, _
   ByVal autoFilterMode As AutoFilterMode _
)

パラメータ

name
スキンの名前
backColor
シートの背景色
cellBackColor
セルの背景色
cellForeColor
セルのテキスト色
gridLineColor
グリッド線の色
gridLines
グリッド線が表示されるかどうか
headerBackColor
ヘッダの背景色
headerForeColor
ヘッダのテキストの色
selectionBackColor
選択されているセルの背景色
selectionForeColor
選択されているセルのテキストの色
evenRowBackColor
偶数番目の行の背景色
oddRowBackColor
奇数番目の行の背景色
flatColumnHeader
フラットなヘッダとデフォルトの3Dヘッダのどちらが表示されるか
flatRowHeader
フラットなヘッダとデフォルトの3Dヘッダのどちらが表示されるか
headerFontBold
ヘッダのフォントを太字にするかどうか
showColumnHeader
列ヘッダを表示するかどうか
showRowHeader
行ヘッダを表示するかどうか
columnHeaderParent
親列ヘッダ
rowHeaderParent
行ヘッダの親
dataAreaParent
データ領域の親
cornerParent
シートコーナーの親
filterBarParent
フィルタバーの親。
filterBarHeaderParent
フィルタバーヘッダの親。
filterBarBackColor
フィルタバーの背景色。
filterBarForeColor
フィルタバーのテキストの色。
filterBarHeaderBackColor
フィルタバーヘッダの背景色。
filterBarHeaderForeColor
フィルタバーヘッダのテキストの色。
autoFilterMode
シートの AutoFilterMode。
使用例
次のサンプルコードは、シートスキンを作成して適用します。
FarPoint.Win.Spread.SheetSkin sk = new FarPoint.Win.Spread.SheetSkin("sk", System.Drawing.Color.Aqua, System.Drawing.Color.LightYellow, System.Drawing.Color.Black, System.Drawing.Color.Beige, FarPoint.Win.Spread.GridLines.Both, System.Drawing.Color.AliceBlue, System.Drawing.Color.DarkBlue, System.Drawing.Color.Beige, System.Drawing.Color.DarkSeaGreen, System.Drawing.Color.AntiqueWhite, System.Drawing.Color.LightSlateGray, false, false, true, true, true, "test", "test1", "test2", "test3", "test4", "test5", System.Drawing.Color.Thistle, System.Drawing.Color.Purple, System.Drawing.Color.Bisque, System.Drawing.Color.Black, FarPoint.Win.Spread.AutoFilterMode.FilterBar);
FarPoint.Win.Spread.SheetSkin testskin = new FarPoint.Win.Spread.SheetSkin(sk);
testskin.Apply(fpSpread1);
listBox1.Items.Add(sk.FilterBarHeaderBackColor.ToString());
listBox1.Items.Add(sk.FilterBarHeaderForeColor.ToString());
listBox1.Items.Add(sk.FilterBarBackColor.ToString());
listBox1.Items.Add(sk.FilterBarForeColor.ToString());
listBox1.Items.Add(sk.AutoFilterMode.ToString());
Dim sk As New FarPoint.Win.Spread.SheetSkin("sk", System.Drawing.Color.Aqua, System.Drawing.Color.LightYellow, System.Drawing.Color.Black, System.Drawing.Color.Beige, FarPoint.Win.Spread.GridLines.Both, System.Drawing.Color.AliceBlue, System.Drawing.Color.DarkBlue, System.Drawing.Color.Beige, System.Drawing.Color.DarkSeaGreen, System.Drawing.Color.AntiqueWhite, System.Drawing.Color.LightSlateGray, False, False, True, True, True, "test", "test1", "test2", "test3", "test4", "test5", System.Drawing.Color.Thistle, System.Drawing.Color.Purple, System.Drawing.Color.Bisque, System.Drawing.Color.Black, FarPoint.Win.Spread.AutoFilterMode.FilterBar)
Dim testskin As New FarPoint.Win.Spread.SheetSkin(sk)
testskin.Apply(FpSpread1)
ListBox1.Items.Add(sk.FilterBarHeaderBackColor.ToString())
ListBox1.Items.Add(sk.FilterBarHeaderForeColor.ToString())
ListBox1.Items.Add(sk.FilterBarBackColor.ToString())
ListBox1.Items.Add(sk.FilterBarForeColor.ToString())
ListBox1.Items.Add(sk.AutoFilterMode.ToString())
参照

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

 

 


© MESCIUS inc. All rights reserved.