Good morning,
I have several tables in my presentation created by Spire Presentation library. (which is great, btw)
All the tables has fixed font size in them - How can I change the font size?
Here an example of my code:
ITable table= slide2.Shapes.AppendTable(RIGHT_TITLE_X+10, 100, Table_Widths, Table_heights);
string[] tableHeaders = { "one", "two" };
table[0, 0].TextFrame.Text = tableHeaders[0];
table[0, 0].FillFormat.SolidColor.Color = Color.LightSkyBlue;
table[1, 0].TextFrame.Text = tableHeaders[1];
table[1, 0].FillFormat.SolidColor.Color = Color.LightSkyBlue;
and so on...
Many Thanks,
Sammy