Spread ASP.NET 6.0 Product Documentation
ShowEllipsis Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > TextCellType Class : ShowEllipsis Property


Glossary Item Box

Gets or sets whether to render ellipses(...) to indicate text overflow in the cell.

Syntax

Visual Basic (Declaration) 
Public Property ShowEllipsis As Boolean
Visual Basic (Usage)Copy Code
Dim instance As TextCellType
Dim value As Boolean
 
instance.ShowEllipsis = value
 
value = instance.ShowEllipsis
C# 
public bool ShowEllipsis {get; set;}

Property Value

Boolean: true if ellipsis is displayed; false otherwise

Example

This example shows ellipses in a text cell.
C#Copy Code
FarPoint.Web.Spread.TextCellType textcell = new FarPoint.Web.Spread.TextCellType();
textcell.AllowWrap = false; 
textcell.ShowEllipsis = true; 
FpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;

Visual BasicCopy Code
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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.