WoW:API EditBox GetText: Difference between revisions
Jump to navigation
Jump to search
GetText -Documentation by DerGhulbus-
({{widgetmethod}}) |
(added information about special characters, being escaped) |
||
| Line 18: | Line 18: | ||
---- | ---- | ||
;''Details'' | ;''Details'' | ||
Note that the special characters "|" and "\" are escaped in the returned string. That way GetText() returns "||" instead of "|" and "\\" instead of "\". | |||
---- | ---- | ||
Revision as of 16:47, 14 May 2007
← Widget API ← EditBox < GetText
str = editBox:GetText()
Returns the String that is currently entered in the EditBox.
- Arguments
???
- Returns
- str
- str
- String - the current String in the EditBox
- Details
Note that the special characters "|" and "\" are escaped in the returned string. That way GetText() returns "||" instead of "|" and "\\" instead of "\".
- Comments
If you want to read in numbers you should use the GetNumber() function instead.