Special Parameters

Rectangle Parameter
a rectangle parameter must be in the following form:
x y width height ?unit?
where unit may be one of the following values: cm, mm or i, in, inch. If unit is missing, 1/100th of a mm is used

Options
Options parameter list must have the form "option value ?option value ...?

Border properties
let me show you two examples, two for the TableBorder and one for a TopBorder.

TableBorder 1:
AllLines [list Color 0x00ff00 InnerLineWidth 50 OuterLineWidth 50 LineDistance 50] ValidLines [list Horizontal Top Right Bottom]
in this examples all borders have the same properties and only the horizontal, top, right and bottom lines are drawn

TableBorder 2:
TopLine [list Color 0 InnerLineWidth 0 OuterLineWidth 100 LineDistance 0] IsTopLineValid True LeftLine [list Color 0xff0000 InnerLineWidth 0 OuterLineWidth 100 LineDistance 0] IsLeftLineValid True RightLine [list Color 0x00ff00 InnerLineWidth 0 OuterLineWidth 100 LineDistance 0] IsRightLineValid True BottomLine [list Color 0x0000ff InnerLineWidth 20 OuterLineWidth 20 LineDistance 100] IsBottomLineValid True
in this examples the top, left, right and bottom borders all have different properties

TopBorder:
Color 0x00ff00 InnerLineWidth 100 OuterLineWidth 200 LineDistance 300

Cell Range
a cell index may either be given as a list of column and row or as normal cell index (e.g. B4).
A cell range may either be given as a list of start column, start row, end column and end row or as a normal cell range (e.g. B4:E9)