OnDgsPreCreate

From Multi Theft Auto: Wiki
Revision as of 13:41, 20 January 2018 by Thisdp (talk | contribs) (→‎Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

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("onDgsPreCreate",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