DxEditSetMaxCharacters: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} Esta función sirve para colocar un maximo de caracteres que se pueden escribir en 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 dxEditSetMaxCharacters( element element, int quantity ) </syntaxhighlight> ===Argumentos requeridos=== *'''element:''' El elemento dxEdi...")
 
mNo edit summary
 
Line 15: Line 15:
==Ejemplo==  
==Ejemplo==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
loadstring(exports.dxlib:dxGetLibrary())()
loadstring( exports.dxLibrary:dxGetLibrary( ) )( )


--creamos una caja de texto
--creamos una caja de texto

Latest revision as of 20:18, 21 May 2022

Esta función sirve para colocar un maximo de caracteres que se pueden escribir en un dxEdit.

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

Syntax

bool dxEditSetMaxCharacters( element element, int quantity )

Argumentos requeridos

  • element: El elemento dxEdit.
  • quantity: Un entero que representa la cantidad de caracteres.

Ejemplo

loadstring( exports.dxLibrary:dxGetLibrary( ) )( )

--creamos una caja de texto
edit = dxEdit(277, 184, 197, 46, 'edit demo 1')
-- Le colocamos un maximo de 30 caracteres
dxEditSetMaxCharacters(edit, 30)

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar