1234567891011121314151617181920212223242526272829303132333435363738 |
- .. _func_maxgui_gadgets_setgadgettext:
- =============
- SetGadgetText
- =============
- SetGadgetText -
- Description
- ===========
- .. code-block:: blitzmax
- SetGadgetText( gadget:TGadget,text$ )
- Sets a gadget's text.
- For the @Label, @Button, @TextField, @ComboBox, @TextArea and Group @Panel gadgets, the contents
- of the gadget are replaced with the new @text$.
- For a @Window gadget, #SetGadgetText changes the title. For @Windows with a status bar,
- you can use #SetStatusText to set the status bar text also.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- See Also
- ========
|