Core Function GUIRichTextBox
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> GUIRichTextBox( <richtextbox> ) </pre> === Description === Properties & Functions specifically for RichTextBox === Parameters === ==== richtextbox ==== The RichTextBox...")
Newer edit →
(Created page with "<pre> GUIRichTextBox( <richtextbox> ) </pre> === Description === Properties & Functions specifically for RichTextBox === Parameters === ==== richtextbox ==== The RichTextBox...")
Newer edit →
Revision as of 01:54, 5 October 2013
GUIRichTextBox( <richtextbox> )
Contents |
Description
Properties & Functions specifically for RichTextBox
Parameters
richtextbox
The RichTextBox GUI object to use.
Functions
Note - Anything is not listed here will most likely be be found in GUIGetProp and GUISetProp or GUIPropInvoke etc this is because a lot of properties and stuff is actually generic for many controls.
WordWrap
Turn wordwrap on or off or get the current state
GUIRichTextBox($MyBox, "WordWrap", false); # Turn off GUIRichTextBox($MyBox, "WordWrap", true); # Turn on $value = GUIRichTextBox($MyBox, "WordWrap") # Get current
Example
Go see GUICreate( "RichTextBox" ) for example.