Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / EditBase Class / AppendText Method
The text to append to the current contents of the edit control.


In This Topic
    AppendText Method (EditBase)
    In This Topic
    Appends text to the current text of the edit control.
    Syntax
    'Declaration
     
    
    Public Sub AppendText( _
       ByVal text As String _
    ) 
    'Usage
     
    
    Dim instance As EditBase
    Dim text As String
     
    instance.AppendText(text)
    public void AppendText( 
       string text
    )

    Parameters

    text
    The text to append to the current contents of the edit control.
    Remarks
    You can use this method to add text to the existing text in the control instead of using the concatenation operator (+) to concatenate text to the Text property.
    See Also