Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcComboBoxEditingControl Class / Ellipsis Property


In This Topic
    Ellipsis Property (GcComboBoxEditingControl)
    In This Topic
    Gets or sets how show ellipsis when width of text is longer than control.
    Syntax
    'Declaration
     
    
    Public Property Ellipsis As EllipsisMode
    'Usage
     
    
    Dim instance As GcComboBoxEditingControl
    Dim value As EllipsisMode
     
    instance.Ellipsis = value
     
    value = instance.Ellipsis
    public EllipsisMode Ellipsis {get; set;}

    Property Value

    A EllipsisMode enumeration, None, means no ellipsis string is shown. EllipsisEnd, Trim the end of string with charactor. EllipsisPath, Trim the center of string with charactor. EllipsisWord, Trim the end of string with word.
    The default is EllipsisMode.None.
    Remarks
    When the text is longer than this control's width and this control doesn't focused, the EllipsisString property is displayed.
    See Also