DxWindowSetCloseState

From Multi Theft Auto: Wiki
Revision as of 04:06, 11 May 2022 by ClawSuit (talk | contribs) (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">...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Sintaxis

bool dxWindowSetCloseState(element element, bool state)

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

loadstring(exports.dxlib: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