FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetSkin クラス > SheetSkin コンストラクタ : 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) |
'Declaration 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 _ )
'使用法 Dim name As String Dim backColor As Color Dim cellBackColor As Color Dim cellForeColor As Color Dim gridLineColor As Color Dim gridLines As GridLines Dim headerBackColor As Color Dim headerForeColor As Color Dim selectionBackColor As Color Dim selectionForeColor As Color Dim evenRowBackColor As Color Dim oddRowBackColor As Color Dim flatColumnHeader As Boolean Dim flatRowHeader As Boolean Dim headerFontBold As Boolean Dim showColumnHeader As Boolean Dim showRowHeader As Boolean Dim columnHeaderParent As String Dim rowHeaderParent As String Dim dataAreaParent As String Dim cornerParent As String Dim filterBarParent As String Dim filterBarHeaderParent As String Dim filterBarBackColor As Color Dim filterBarForeColor As Color Dim filterBarHeaderBackColor As Color Dim filterBarHeaderForeColor As Color Dim autoFilterMode As AutoFilterMode Dim instance As New SheetSkin(name, backColor, cellBackColor, cellForeColor, gridLineColor, gridLines, headerBackColor, headerForeColor, selectionBackColor, selectionForeColor, evenRowBackColor, oddRowBackColor, flatColumnHeader, flatRowHeader, headerFontBold, showColumnHeader, showRowHeader, columnHeaderParent, rowHeaderParent, dataAreaParent, cornerParent, filterBarParent, filterBarHeaderParent, filterBarBackColor, filterBarForeColor, filterBarHeaderBackColor, filterBarHeaderForeColor, autoFilterMode)
public SheetSkin( string name, Color backColor, Color cellBackColor, Color cellForeColor, Color gridLineColor, GridLines gridLines, Color headerBackColor, Color headerForeColor, Color selectionBackColor, Color selectionForeColor, Color evenRowBackColor, Color oddRowBackColor, bool flatColumnHeader, bool flatRowHeader, bool headerFontBold, bool showColumnHeader, bool showRowHeader, string columnHeaderParent, string rowHeaderParent, string dataAreaParent, string cornerParent, string filterBarParent, string filterBarHeaderParent, Color filterBarBackColor, Color filterBarForeColor, Color filterBarHeaderBackColor, Color 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())