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


In This Topic
    Multiline Property
    In This Topic
    Gets or sets whether the control can accept and display multiple lines of text.
    Syntax
    'Declaration
     
    Public Property Multiline As Boolean
    'Usage
     
    Dim instance As GcTextBox
    Dim value As Boolean
     
    instance.Multiline = value
     
    value = instance.Multiline
    public bool Multiline {get; set;}

    Property Value

    true if the control is a multiline control; otherwise, false.
    The default is false.
    Remarks
    A multiple-line control wraps text as the user types text extending beyond the text box when TextWrapping isn't System.Windows.TextWrapping.NoWrap.
    See Also