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 - Keyboard action proxies
DelLineLeft
DelLineRight
HomeDisplay
HomeDisplayExtend
LineEndDisplay
LineEndDisplayExtend
WordPartLeft
WordPartLeftExtend
WordPartRight
WordPartRightExtend
Summary:
Normally, if you want to programmatically execute a command that's normally performed by a user pressing a key, you use CmdKeyExecute. For some unknown reason, some of these forms have direct methods as shown on this page.
For example,
HomeDisplay()
rather than CmdKeyExecute(wxSTC_CMD_HOMEDISPLAY).
----
DelLineLeft()
Identical effect as CmdKeyExecute(wxSTC_CMD_DELLINELEFT). Returns None.
top
----
DelLineRight()
Identical effect as CmdKeyExecute(wxSTC_CMD_DELLINERIGHT). Returns None.
top
----
HomeDisplay()
Identical effect as CmdKeyExecute(wxSTC_CMD_HOMEDISPLAY). Returns None.
top
----
HomeDisplayExtend()
Identical effect as CmdKeyExecute(wxSTC_CMD_HOMEDISPLAYEXTEND). Returns None.
top
----
LineEndDisplay()
Identical effect as CmdKeyExecute(wxSTC_CMD_LINEENDDISPLAY). Returns None.
top
----
LineEndDisplayExtend()
Identical effect as CmdKeyExecute(wxSTC_CMD_LINEENDDISPLAYEXTEND). Returns None.
top
----
WordPartLeft()
Identical effect as CmdKeyExecute(wxSTC_CMD_WORDPARTLEFT). Returns None.
top
----
WordPartLeftExtend()
Identical effect as CmdKeyExecute(wxSTC_CMD_WORDPARTLEFTEXTEND). Returns None.
top
----
WordPartRight()
Identical effect as CmdKeyExecute(wxSTC_CMD_WORDPARTRIGHT). Returns None.
top
----
WordPartRightExtend()
Identical effect as CmdKeyExecute(wxSTC_CMD_WORDPARTRIGHTEXTEND). Returns None.
top
----