TableCell.BackgroundColor
TableCell.BackgroundColor property
الحصول على لون الخلفية أو تعيينه.
public Color BackgroundColor { get; set; }
أمثلة
يوضح كيفية تعيين لون الخلفية لخلية.
// إنشاء كائن من فئة المستند
Document doc = new Document();
// تهيئة كائن فئة TableCell وتعيين محتوى النص
TableCell cell11 = new TableCell(doc);
cell11.AppendChildLast(InsertTable.GetOutlineElementWithText(doc, "Small text"));
cell11.BackgroundColor = Color.Coral;
// تهيئة كائن فئة 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);
// تهيئة كائن فئة الصفحة
Page page = new Page(doc);
page.AppendChildLast(o);
doc.AppendChildLast(page);
doc.Save(Path.Combine(RunExamples.GetDataDir_Tables(), "SettingCellBackGroundColor.pdf"));
أنظر أيضا
- class TableCell
- مساحة الاسم Aspose.Note
- المجسم Aspose.Note