Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcTextBox Class / ShowOverflowTip Property


In This Topic
    ShowOverflowTip Property
    In This Topic
    Gets or set whether to show overflow tooltip.
    Syntax
    'Declaration
     
    Public Property ShowOverflowTip As Boolean
    'Usage
     
    Dim instance As GcTextBox
    Dim value As Boolean
     
    instance.ShowOverflowTip = value
     
    value = instance.ShowOverflowTip
    public bool ShowOverflowTip {get; set;}

    Property Value

    true means to show overflow tooltip when mouse hover on control that text is overflow; otherwise, false.
    The default is false.
    Remarks
    The overflow tooltip will be shown when both of the following conditions are satisfied.
    The ControlBase.IsActive property of this control is false.
    A mouse pointer is on the text of the control.
    See Also