TableCell.BackgroundColor
TableCell.BackgroundColor property
Krijgt of stelt de achtergrondkleur in.
public Color BackgroundColor { get; set; }
Voorbeelden
Laat zien hoe u een achtergrondkleur voor een cel instelt.
// Maak een object van de klasse Document
Document doc = new Document();
// Initialiseer het klasseobject TableCell en stel tekstinhoud in
TableCell cell11 = new TableCell(doc);
cell11.AppendChildLast(InsertTable.GetOutlineElementWithText(doc, "Small text"));
cell11.BackgroundColor = Color.Coral;
// Initialiseer het klasseobject TableRow
TableRow row = new TableRow(doc);
row.AppendChildLast(cell11);
Table table = new Table(doc)
{
IsBordersVisible = true,
Columns = { new TableColumn() { Width = 200 } }
};
table.AppendChildLast(row);
OutlineElement oe = new OutlineElement(doc);
oe.AppendChildLast(table);
Outline o = new Outline(doc);
o.AppendChildLast(oe);
// Initialiseer het paginaklasse-object
Page page = new Page(doc);
page.AppendChildLast(o);
doc.AppendChildLast(page);
doc.Save(Path.Combine(RunExamples.GetDataDir_Tables(), "SettingCellBackGroundColor.pdf"));
Zie ook
- class TableCell
- naamruimte Aspose.Note
- montage Aspose.Note