SetCellBorderRight
Sets the border which will be displayed to the right of the current table cell.
Syntax
expression.SetCellBorderRight(sType, nSize, nSpace, r, g, b);
expression
- A variable that represents a ApiTableCell class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
sType | Required | BorderType | The cell right border style. | |
nSize | Required | pt_8 | The width of the current cell right border measured in eighths of a point. | |
nSpace | Required | pt | The spacing offset in the right part of the table cell measured in points used to place this border. | |
r | Required | byte | Red color component value. | |
g | Required | byte | Green color component value. | |
b | Required | byte | Blue color component value. |
Returns
This method doesn't return any data.
Example
This example sets the border which will be displayed to the right of the table cell.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("We create a 3x3 table and add the right 4 point black border to all cells:");
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
let tableCellPr = tableStyle.GetTableCellPr();
tableCellPr.SetCellBorderRight("single", 32, 0, 51, 51, 51);
table.SetStyle(tableStyle);
doc.Push(table);