DxEditSetMasked

From Multi Theft Auto: Wiki
Revision as of 07:04, 21 May 2022 by ClawSuit (talk | contribs) (Created page with "__NOTOC__ {{Client function}} Esta función sirve para enmascarar el texto de un dxEdit. <small>'''<span style="color:#ff0000; text-shadow:black 0em 0.1em 0.1em;">''Aviso: Esta es una función exportada por Modern-Library!''</span>'''</small> ==Syntax== <syntaxhighlight lang="lua"> bool dxEditSetMasked( element element, bool bool ) </syntaxhighlight> ===Argumentos requeridos=== *'''element:''' El elemento dxEdit. *'''bool:''' Un booleano (true o false)....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Esta función sirve para enmascarar el texto de un dxEdit.

Aviso: Esta es una función exportada por Modern-Library!

Syntax

bool dxEditSetMasked( element element, bool bool )

Argumentos requeridos

  • element: El elemento dxEdit.
  • bool: Un booleano (true o false).

Ejemplo

loadstring(exports.dxlib:dxGetLibrary())()

--creamos una caja de texto
edit = dxEdit(277, 184, 197, 46, 'edit demo 1')
-- enmascaramos el texto
dxEditSetMasked(edit, true)

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar