AD
Administrator
Syncfusion Team
October 3, 2005 04:10 AM UTC
Hi Harneet,
Here is a Code snippet to Shrink text:
//Assigning Shrink text property
sheet.Range["A1"].CellStyle.ShrinkToFit = true;
Please see to it and let me know if you have further questions.
Best Regards,
Seetha
>I am not able to retrive the Shrink text feature.
AD
Administrator
Syncfusion Team
October 3, 2005 12:50 PM UTC
Hi Harneet,
Here is Code Snippet to retrieve Shrink text:
//Retrieve Shrink text
bool shrinkState = sheet.Range["A1"].CellStyle.ShrinkToFit;
MessageBox.Show(shrinkState.ToString());
Please let me know if you have further questions.
Best Regards,
Seetha
>I am not able to retrive the Shrink text feature.