Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have my Table:
AcadTable acTable = new AcadTable(); acTable = thisDrawing.PaperSpace.AddTable(insertPoint, rows, columns, defaultRowHeight, defaultColumnWidth); acTable.SetTextHeight((int)AcRowType.acTitleRow, 3); acTable.SetTextHeight((int)AcRowType.acHeaderRow, 2); acTable.SetTextHeight((int)AcRowType.acDataRow, 2); acTable.SetTextStyle((int)AcRowType.acTitleRow, "Arial"); acTable.SetTextStyle((int)AcRowType.acHeaderRow, "Arial"); acTable.SetTextStyle((int)AcRowType.acDataRow, "Arial"); acTable.RowHeight = defaultRowHeight; acTable.Layer = "0";
and can change the text color:
acTable.SetCellContentColor(currentRow, currentColumn, (AcadAcCmColor)myColor);
How can i make the text from a cell or column BOLD ?
Solved! Go to Solution.