CustomEditBox:getReadOnly

From Multi Theft Auto: Wiki
Revision as of 15:21, 24 July 2018 by AriosJentu (talk | contribs) (Created page with "__NOTOC__ {{Client function}} This function gets Custom Edit Box read only state. == Syntax == <syntaxhighlight lang="lua"> bool CustomEditBox:getReadOnly() </syntaxhighlight...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function gets Custom Edit Box read only state.

Syntax

bool CustomEditBox:getReadOnly()

Returns

Returns boolean value - is edit box read only

Example

Code Example

This example creates window with Edit Box and Memo Box with read only state, but Memo's read only state sets with Edit's state:

local Window = CustomWindow.create(50, 50, 200, 185, "Example")
local Edit = CustomEdit.create(5, 25, 190, 25, "Edit Box", false, Window)
local Memo = CustomMemo.create(5, 55, 190, 60, "Memo Box\nRead Only", false, Window)
local MemoDefault = CustomMemo.create(5, 120, 190, 60, "Memo Box\nMultiline", false, Window)

Edit:setReadOnly(true)
Memo:setReadOnly(Edit:getReadOnly())

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets