var instance = new GC.Spread.Sheets.Tables.TableStyle(backColor, foreColor, font, borderLeft, borderTop, borderRight, borderBottom, borderHorizontal, borderVertical, textDecoration);
function TableStyle;
var instance = new GC.Spread.Sheets.Tables.TableStyle(backColor, foreColor, font, borderLeft, borderTop, borderRight, borderBottom, borderHorizontal, borderVertical, textDecoration);
function TableStyle;
//This example creates a table. 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
Name | Description | |
---|---|---|
TableStyle Constructor | Represents table style information. |
Name | Description | |
---|---|---|
backColor | Indicates the background color. | |
borderBottom | Indicates the bottom border line of the table. | |
borderHorizontal | Indicates the horizontal border line of the table. | |
borderLeft | Indicates the left border line of the table. | |
borderRight | Indicates the right border line of the table. | |
borderTop | Indicates the top border line of the table. | |
borderVertical | Indicates the vertical border line of the table. | |
font | Indicates the font. | |
foreColor | Indicates the foreground color. | |
textDecoration | Indicates the text decoration of the table. |