Spread WinForms 15
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBoxCellType Class / Ellipsis Property


Ellipsis Property (GcComboBoxCellType)
Gets or sets how to show ellipsis when the text width is longer than the control.
Syntax
'Declaration
 
Public Property Ellipsis As EllipsisMode
 
'Usage
 
Dim instance As GcComboBoxCellType
Dim value As EllipsisMode
 
instance.Ellipsis = value
 
value = instance.Ellipsis

Property Value

In the EllipsisMode enumeration, None, means no ellipsis string is shown. EllipsisEnd, adds the ellipsis string to the end of the characters. EllipsisPath, adds the string to the center of the characters. EllipsisWord, trims the end of the string with a word.
The default is EllipsisMode.None.
Exceptions
ExceptionDescription
The value is not a valid EllipsisMode item.
Remarks
When the text is longer than the control's width and the control does not have focus, the EllipsisString property is displayed.
See Also