Hi
I created a report with a grid (IGrid) and use a cellPattern for the cell charactaristics however I dont see any font that I can set.
I would like to set a specific font style for the text in the cells. size , boldness etc.
what is the best way to do it . currently what I do is use the IText , but I wonder if there is an option in the cellPattern somehow.
cellPattern.Apply(gridCell);
t.Style.Font = new Font("Arial", 10);
Thanks.
I think you have to use an IText. The cell itself doesn't have the ability to show text, it's just a container, so it doesn't make sense for it to have a Font setting. The IText is what displys the text and determines the font.