[]
Specifies the line drawing style for the border.
example
//This example creates a border.
var border = new GC.Spread.Sheets.LineBorder
border.color = "#7FFFD4";
border.style = GC.Spread.Sheets.LineStyle.double;
var cell = activeSheet.getCell(1, 1, GC.Spread.Sheets.SheetArea.viewport);
cell.borderLeft(border);
• dashDot = 9
Indicates a border line with dash-dot.
• dashDotDot = 11
Indicates a border line with dash-dot-dot.
• dashed = 3
Indicates a border line with dashes.
• dotted = 4
Indicates a border line with dots.
• double = 6
Indicates a double border line.
• empty = 0
Indicates a border line without a style.
• hair = 7
Indicates a border line with all dots.
• medium = 2
Indicates a medium border line with a solid line.
• mediumDashDot = 10
Indicates a medium border line with dash-dot-dot.
• mediumDashDotDot = 12
Indicates a medium border line with dash-dot-dot.
• mediumDashed = 8
Indicates a medium border line with dashes.
• slantedDashDot = 13
Indicates a slanted border line with dash-dot.
• thick = 5
Indicates a thick border line with a solid line.
• thin = 1
Indicates a border line with a solid thin line.