Skybound.Gecko.GeckoWebBrowser.Paste C# (CSharp) Méthode

Paste() public méthode

Pastes the contents of the clipboard at the current selection.
public Paste ( ) : bool
Résultat bool
        public bool Paste()
        {
            if (CanPaste)
            {
                ClipboardCommands.Paste();
                return true;
            }
            return false;
        }