Skybound.Gecko.GeckoWebBrowser.CutSelection C# (CSharp) Method

CutSelection() public method

Cuts the selection to the clipboard.
public CutSelection ( ) : bool
return bool
        public bool CutSelection()
        {
            if (CanCutSelection)
            {
                ClipboardCommands.CutSelection();
                return true;
            }
            return false;
        }