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


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

    Parameters

    text
    The text to append to the current contents of the 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