Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / EditBase Class / Cut Method


In This Topic
    Cut Method (EditBase)
    In This Topic
    Removes the current selection from the control and copies it to the System.Windows.Clipboard.
    Syntax
    'Declaration
     
    <SecurityCriticalAttribute()>
    Public Sub Cut() 
    'Usage
     
    Dim instance As EditBase
     
    instance.Cut()
    [SecurityCritical()]
    public void Cut()
    Remarks
    A cut operation removes the current selection from the control and copies it to the System.Windows.Clipboard. Note that the selected text is removed (cut) from the control in the process. A similar method, Copy, copies the current selection to the System.Windows.Clipboard, but does not remove the selected text from the control.
    See Also