Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / EditBase Class / AppendText Method
The text to append to the current contents of the edit control.


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

    Parameters

    textData
    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