SetShd

SetShd(sType, r, g, b, [isAuto])

Inherited From: ApiTableCellPr#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 an orange shading to cell #1:");
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"));
var oTable = Api.CreateTable(3, 3);
oTable.SetWidth("percent", 100);
var oCell = oTable.GetRow(0).GetCell(0);
oCell.SetShd("clear", 255, 111, 61, false);
oTable.SetStyle(oTableStyle);
oDocument.Push(oTable);
builder.SaveFile("docx", "SetShd.docx");
builder.CloseFile();

Resulting document