Spread Windows Forms 13.0 Product Documentation
FarPoint.Win Assembly / FarPoint.Win Namespace / SuperEditBase Class / Copy Method
Example


In This Topic
    Copy Method (SuperEditBase)
    In This Topic
    Copies the selected text in the edit control to the Clipboard.
    Syntax
    'Declaration
     
    Public Overridable Sub Copy() 
    'Usage
     
    Dim instance As SuperEditBase
     
    instance.Copy()
    public virtual void Copy()
    Remarks

    Use this method to copy the selected text to the Clipboard.

    Use the Cut method to remove the text and place it on the Clipboard. Use the Paste method to paste text from the Clipboard into the control.

    Example
    control.Copy();
    control.Copy()
    See Also