:: com :: sun :: star :: table ::

constants group BorderLineStyle

Constants
NONE  
SOLID Solid border line.  
DOTTED Dotted border line.  
DASHED Dashed border line.  
DOUBLE Double border line. Widths of the lines and the gap are all equal, and vary equally with the total width.  
THINTHICK_SMALLGAP Double border line with a thin line outside and a thick line inside separated by a small gap.  
THINTHICK_MEDIUMGAP Double border line with a thin line outside and a thick line inside separated by a medium gap.  
THINTHICK_LARGEGAP Double border line with a thin line outside and a thick line inside separated by a large gap.  
THICKTHIN_SMALLGAP Double border line with a thick line outside and a thin line inside separated by a small gap.  
THICKTHIN_MEDIUMGAP Double border line with a thick line outside and a thin line inside separated by a medium gap.  
THICKTHIN_LARGEGAP Double border line with a thick line outside and a thin line inside separated by a large gap.  
EMBOSSED 3D embossed border line.  
ENGRAVED 3D engraved border line.  
OUTSET Outset border line.  
INSET Inset border line.  
FINE_DASHED Finely dashed border line.  
DOUBLE_THIN Double border line consisting of two fixed thin lines separated by a variable gap.  
DASH_DOT Line consisting of a repetition of one dash and one dot.  
DASH_DOT_DOT Line consisting of a repetition of one dash and 2 dots.  
BORDER_LINE_STYLE_MAX Maximum valid border line style value.  
Constants' Details
NONE
const short NONE = 0x7FFF;
SOLID
const short SOLID = 0;
Description
Solid border line.
DOTTED
const short DOTTED = 1;
Description
Dotted border line.
DASHED
const short DASHED = 2;
Description
Dashed border line.
DOUBLE
const short DOUBLE = 3;
Description
Double border line. Widths of the lines and the gap are all equal, and vary equally with the total width.
THINTHICK_SMALLGAP
const short THINTHICK_SMALLGAP = 4;
Description
Double border line with a thin line outside and a thick line inside separated by a small gap.
THINTHICK_MEDIUMGAP
const short THINTHICK_MEDIUMGAP = 5;
Description
Double border line with a thin line outside and a thick line inside separated by a medium gap.
THINTHICK_LARGEGAP
const short THINTHICK_LARGEGAP = 6;
Description
Double border line with a thin line outside and a thick line inside separated by a large gap.
THICKTHIN_SMALLGAP
const short THICKTHIN_SMALLGAP = 7;
Description
Double border line with a thick line outside and a thin line inside separated by a small gap.
THICKTHIN_MEDIUMGAP
const short THICKTHIN_MEDIUMGAP = 8;
Description
Double border line with a thick line outside and a thin line inside separated by a medium gap.
THICKTHIN_LARGEGAP
const short THICKTHIN_LARGEGAP = 9;
Description
Double border line with a thick line outside and a thin line inside separated by a large gap.
EMBOSSED
const short EMBOSSED = 10;
Description
3D embossed border line.
ENGRAVED
const short ENGRAVED = 11;
Description
3D engraved border line.
OUTSET
const short OUTSET = 12;
Description
Outset border line.
INSET
const short INSET = 13;
Description
Inset border line.
FINE_DASHED
const short FINE_DASHED = 14;
Description
Finely dashed border line.
DOUBLE_THIN
const short DOUBLE_THIN = 15;
Description
Double border line consisting of two fixed thin lines separated by a variable gap.
DASH_DOT
const short DASH_DOT = 16;
Description
Line consisting of a repetition of one dash and one dot.
DASH_DOT_DOT
const short DASH_DOT_DOT = 17;
Description
Line consisting of a repetition of one dash and 2 dots.
BORDER_LINE_STYLE_MAX
const short BORDER_LINE_STYLE_MAX = 17;
Description
Maximum valid border line style value.
Top of Page