How can I center a table in a RadDocument?
I am creating the RadDocument in code. I don't want to center the content in the cells, I just wan to center the entire table in the document. (horizontally)
I am creating the RadDocument in code. I don't want to center the content in the cells, I just wan to center the entire table in the document. (horizontally)
RadDocument doc =
new
RadDocument();
Section section =
new
Section();
Table table =
new
Table();
//add rows and cells
section.Blocks.Add(table);
document.Sections.Add(Section);