PowerTools SPREAD for ASP.NET 8.0J
ShowEllipsis プロパティ (TextCellType)

セルのテキストがオーバーフローしていることを示すために省略記号(...)をレンダリングするかどうかを取得または設定します。
構文
'Declaration
 
Public Property ShowEllipsis As Boolean
public bool ShowEllipsis {get; set;}

プロパティ値

省略記号(...)が表示される場合は True、それ以外の場合は False
次のサンプルコードは、テキスト型セルに省略記号(...)を表示します。
FarPoint.Web.Spread.TextCellType textcell = new FarPoint.Web.Spread.TextCellType();
textcell.AllowWrap = false; 
textcell.ShowEllipsis = true; 
FpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;

Dim textcell As New FarPoint.Web.Spread.TextCellType()
textcell.AllowWrap = False 
textcell.ShowEllipsis = True 
FpSpread1.Sheets(0).Cells(0, 0).CellType = textcell
参照

TextCellType クラス
TextCellType メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.