PyFrame Guide to wxPython
Copyright and License information Home
__ A B C D E F G H I L M P R S T U V W
wxStyledTextCtrl - Cut/Copy/Paste
CanPaste
Clear
Copy
Cut
Paste
Summary:
These commands implement cut/copy/paste. There's nothing complex here! With the exception of CanPaste, all of these commands return None.
----
CanPaste()
Returns 1 if a paste can be performed.
top
----
Clear()
Clear the selection. Returns None.
top
----
Copy()
Copy the selection. Returns None.
top
----
Cut()
Cut the selection. Returns None.
top
----
Paste()
Paste the clipboard at the cursor position if possible. Will overwrite the selection if there is one. Returns None.
top
----