FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : GetPreferredCellSize メソッド |
'Declaration Public Function GetPreferredCellSize( _ ByVal row As Integer, _ ByVal col As Integer _ ) As Size
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())