Font Rotation in GridDesktop

Is there a property for the orientation property of the font in a GridDesktop cell?

In Aspose.Cells Cell.Style.Rotation = 90 works perfectly, but in Aspose.Cells.GridDesktop there is not Rotation property.

Hi,

Well, I am afraid, Aspose.Cells.GridDesktop does not have this feature. I have logged it into our issue tracking system with an issue id: CELLSNET-17554.

Once we have any update about it we will let you know.

Thank you.

Hi,

<?xml:namespace prefix = u1 /><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

We have supported text rotation in the attached Aspose.Cells.GridDesktop v<?xml:namespace prefix = st1 />2.1.1.2002. Please try the following code:

Style style = sheet.Cells["F5"].GetStyle();

style.Rotation = 90;

sheet.Cells["F5"].SetStyle(style);

Thank You & Best Regards,

Thank You