SetShd
Specifies the shading applied to the contents of the table cell.
Parameters:
Name |
Type |
Default |
Description |
sType |
ShdType
|
|
The shading type which will be applied to the contents of the current table cell. |
r |
byte
|
|
Red color component value. |
g |
byte
|
|
Green color component value. |
b |
byte
|
|
Blue color component value. |
isAuto |
boolean
|
false |
The true value disables the table cell contents shading. |
Returns:
-
This method doesn't return any data.
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("We create a 3x3 table and add a red shading to cell #1:");
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered - Accent 5"));
var oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
var oCell = oTable.GetRow(0).GetCell(0);
oCell.SetShd("clear", 0xff, 0x68, 0x00, false);
oTable.SetStyle(oTableStyle);
oDocument.Push(oTable);
builder.SaveFile("docx", "SetShd.docx");
builder.CloseFile();
Resulting document