Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcTextBox Class / Text Property


In This Topic
    Text Property (GcTextBox)
    In This Topic
    Gets or sets the text associated with this control.
    Syntax
    'Declaration
     
    
    Public Overrides Property Text As String
    'Usage
     
    
    Dim instance As GcTextBox
    Dim value As String
     
    instance.Text = value
     
    value = instance.Text
    public override string Text {get; set;}

    Property Value

    The text associated with this control.
    The default is System.String.Empty.
    Remarks
    To display multiple lines of text in a GcTextBox, set the Multiline property to true. To read or set the text of a multiline GcTextBox, use the Lines property. The amount of text that can be entered in the control is limited only by available system memory.
    See Also