FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス : GetMaximumCellOverflowWidth メソッド |
'Declaration Public Function GetMaximumCellOverflowWidth() As Integer
'使用法 Dim instance As SpreadView Dim value As Integer value = instance.GetMaximumCellOverflowWidth()
public int GetMaximumCellOverflowWidth()
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AllowCellOverflow = true;
sv.SetMaximumCellOverflowWidth(130);
listBox1.Items.Add(sv.GetMaximumCellOverflowWidth().ToString());
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook sv.AllowCellOverflow = True sv.SetMaximumCellOverflowWidth(130) ListBox1.Items.Add(sv.GetMaximumCellOverflowWidth().ToString())