DxWindowSetCloseState: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client Function}} Esta funcion oculta o visualiza el boton de cerrado de una dxWindow. ==Sintaxis== <syntaxhighlight lang="lua">bool dxWindowSetCloseState(element element, bool state)</syntaxhighlight> ===Argumentos requeridos=== * '''element''': La ventana la cual se le cambiara el estado del boton de cerrado. * '''state''': Un booleano que representa el estado del boton de cerrado, ''true'' o ''false''. ==Ejemplo de Uso== <syntaxhighlight lang="lua">...")
 
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
Esta funcion oculta o visualiza el boton de cerrado de una [[dxWindow]].
Esta funcion oculta o visualiza el boton de cerrado de una [[dxWindow]].


<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>
==Sintaxis==
==Sintaxis==
<syntaxhighlight lang="lua">bool dxWindowSetCloseState(element element, bool state)</syntaxhighlight>
<syntaxhighlight lang="lua">bool dxWindowSetCloseState(element element, bool state)</syntaxhighlight>


===Argumentos requeridos===
===Argumentos requeridos===
* '''element''': La ventana la cual se le cambiara el estado del boton de cerrado.
* '''element''': El elemento [[dxWindow]].
* '''state''': Un booleano que representa el estado del boton de cerrado, ''true'' o ''false''.
* '''state''': Un booleano (true o false).
==Ejemplo de Uso==
==Ejemplo de Uso==


<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
loadstring(exports.dxlib:dxGetLibrary())()
loadstring( exports.dxLibrary:dxGetLibrary( ) )( )
--creamos una ventana
--creamos una ventana
win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true)
win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true)

Latest revision as of 20:23, 21 May 2022

Esta funcion oculta o visualiza el boton de cerrado de una dxWindow.

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

Sintaxis

bool dxWindowSetCloseState(element element, bool state)

Argumentos requeridos

  • element: El elemento dxWindow.
  • state: Un booleano (true o false).

Ejemplo de Uso

loadstring( exports.dxLibrary:dxGetLibrary( ) )( )
--creamos una ventana
win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true)

--Le removemos el boton de cerrado mediante la funcion.
dxWindowSetCloseState( win, false )

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar