Spread for ASP.NET 10 Product Documentation
ShowEllipsis Property (TextCellType)
Example 


Gets or sets whether to render ellipses (...) to indicate text overflow in the cell.
Syntax
'Declaration
 
Public Property ShowEllipsis As Boolean
'Usage
 
Dim instance As TextCellType
Dim value As Boolean
 
instance.ShowEllipsis = value
 
value = instance.ShowEllipsis
public bool ShowEllipsis {get; set;}

Property Value

Boolean: true if ellipsis is displayed; false otherwise
Example
This example shows ellipses in a text cell.
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
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

TextCellType Class
TextCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.