Difference between revisions of "Lua:Class:Edit"
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
===See also=== | ===See also=== | ||
[[Memo]] | [[Memo]] | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | * [[Lua|Lua Functions and Classes]] |
Revision as of 02:14, 19 January 2017
Edit Class: (Inheritance: WinControl->Control->Component->Object) createEdit(owner): Creates an Edit class object which belongs to the given owner. Owner can be any object inherited from WinControl
Properties
Text: string - The current contents of the editfield OnChange: function - The function to call when the editfield is changed
Methods
clear() selectAll() clearSelection() copyToClipboard() cutToClipboard() pasteFromClipboard() onChange(function)
See also