Spread.Sheets
TableStyle タイプ
テーブルのスタイル情報を表します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Tables.TableStyle(backColor,
                                                     foreColor,
                                                     font,
                                                     borderLeft,
                                                     borderTop,
                                                     borderRight,
                                                     borderBottom,
                                                     borderHorizontal,
                                                     borderVertical,
                                                     textDecoration);
Javascript (Specification) 
function TableStyle;
使用例
// 次のサンプルコードは、テーブルを作成します。 var tableStyle = new GC.Spread.Sheets.Tables.TableTheme(); var thinBorder = new GC.Spread.Sheets.LineBorder("black", GC.Spread.Sheets.LineStyle.dotted); tableStyle.wholeTableStyle(new GC.Spread.Sheets.Tables.TableStyle("aliceblue", "green", "bold 10pt arial", thinBorder, thinBorder, thinBorder, thinBorder, thinBorder, thinBorder)); var tableStyleInfo = new GC.Spread.Sheets.Tables.TableStyle( "black", "white", "bold 11pt arial", new GC.Spread.Sheets.LineBorder("green", GC.Spread.Sheets.LineStyle.thin), new GC.Spread.Sheets.LineBorder("red", GC.Spread.Sheets.LineStyle.thick), new GC.Spread.Sheets.LineBorder("yellow", GC.Spread.Sheets.LineStyle.thin), new GC.Spread.Sheets.LineBorder("blue", GC.Spread.Sheets.LineStyle.thick)); tableStyle.headerRowStyle(tableStyleInfo); var table = activeSheet.tables.add("table1", 1, 1, 5, 5, tableStyle);
継承階層

Object
   GC.Spread.Sheets.Tables.TableStyle

コンストラクタ
 名前解説
public コンストラクタTableStyle コンストラクタテーブルのスタイル情報を表します。  
トップ
フィールド
 名前解説
public フィールドbackColor背景色を示します。  
public フィールドborderBottomテーブルの下罫線を示します。  
public フィールドborderHorizontalテーブルの横罫線を示します。  
public フィールドborderLeftテーブルの左罫線を示します。  
public フィールドborderRightテーブルの右罫線を示します。  
public フィールドborderTopテーブルの上罫線を示します。  
public フィールドborderVerticalテーブルの縦罫線を示します。  
public フィールドfontフォントを示します。  
public フィールドforeColor前景色を示します。  
public フィールドtextDecorationテーブルのテキスト装飾を示します。  
トップ
関連トピック

参照

GC.Spread.Sheets.Tables 名前空間
テーブルの作成

 

 


© 2016-2018, GrapeCity inc. All rights reserved.