OnDgsGUIPreCreate: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client event}} __NOTOC__ This event is fired when the item of a dgs-dxgui element has been created but before finishing data calculating which is different from onClientDgs...")
 
No edit summary
Line 1: Line 1:
{{Client event}}
{{Client event}}
__NOTOC__  
__NOTOC__  
This event is fired when the item of a dgs-dxgui element has been created but before finishing data calculating which is different from onClientDgsDxGUICreate.
This event is fired when the item of a dgs-dxgui element has been created but before finishing data calculating which is different from [[onClientDgsDxGUICreate]].


==Parameters==  
==Parameters==  

Revision as of 14:15, 25 August 2017

This event is fired when the item of a dgs-dxgui element has been created but before finishing data calculating which is different from onClientDgsDxGUICreate.

Parameters

None

Source

The source of this event is the dgs-dxgui element that is created.

Example

This example outputs a message when a dgs-dxgui element created.

DGS = exports.dgs

function onCreated()
	outputChatBox("A "..DGS:dgsGetType(source).." has been created")
end
addEventHandler("onClientDgsDxGUIPreCreate",getRootElement(),onCreated)


See Also

DGS events

General

Check Box

Combo Box

Drag'N Drop

Edit

Grid List

Menu

Selector

Mouse

Radio Button

Switch Button

Tab

Animation

Plugin

Media

Color Picker

QRCode

Remote Image

Client event functions