Spread Windows Forms 12.0 Product Documentation
GetPreferredCellSize Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : GetPreferredCellSize Method
Gets the desired size of the given cell on this sheet.
Overload List
OverloadDescription
Gets the desired size of the given cell on this sheet.  
Example
This example illustrates the use of this member by returning the preferred size for the specified cell.
System.Drawing.Size sz;
fpSpread1.ActiveSheet.SetValue(0, 0, "Let's get the preferred size");
sz = fpSpread1.ActiveSheet.GetPreferredCellSize(0,0);
listBox1.Items.Add(sz.ToString());
Dim sz As System.Drawing.Size
FpSpread1.ActiveSheet.SetValue(0, 0, "Let's get the preferred size")
sz = FpSpread1.ActiveSheet.GetPreferredCellSize(0, 0)
ListBox1.Items.Add(sz.ToString())
See Also

Reference

SheetView Class
SheetView Members
GetPreferredColumnWidth Method
GetPreferredRowHeight Method

User-Task Documentation

Resizing the Row or Column to Fit the Data