OnDgsSizeChange

From Multi Theft Auto: Wiki

This event is triggered each time the size of a DGS element changed.

Parameters

None

Source

The source of this event is the DGS element whose size has changed.

Example

This example would output to the chatbox what the player sized.

DGS = exports.dgs

local window = DGS:dgsCreateWindow(200,200,600,400,"Test Window",false)

addEventHandler("onDgsSizeChange",root,function()
	outputChatBox("You have sized :"..DGS:dgsGetType(source))
end)

See Also

DGS events

Plugin

Media

Color Picker

Client event functions