[]
        
(Showing Draft Content)

GC.Spread.Sheets.LineStyle

Enumeration: LineStyle

Spread.Sheets.LineStyle

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);

Table of contents

Enumeration members

Enumeration members

dashDot

dashDot = 9

Indicates a border line with dash-dot.


dashDotDot

dashDotDot = 11

Indicates a border line with dash-dot-dot.


dashed

dashed = 3

Indicates a border line with dashes.


dotted

dotted = 4

Indicates a border line with dots.


double

double = 6

Indicates a double border line.


empty

empty = 0

Indicates a border line without a style.


hair

hair = 7

Indicates a border line with all dots.


medium

medium = 2

Indicates a medium border line with a solid line.


mediumDashDot

mediumDashDot = 10

Indicates a medium border line with dash-dot-dot.


mediumDashDotDot

mediumDashDotDot = 12

Indicates a medium border line with dash-dot-dot.


mediumDashed

mediumDashed = 8

Indicates a medium border line with dashes.


slantedDashDot

slantedDashDot = 13

Indicates a slanted border line with dash-dot.


thick

thick = 5

Indicates a thick border line with a solid line.


thin

thin = 1

Indicates a border line with a solid thin line.