OnDgsTabSelect

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This event is triggered each time the tab has been changed.

Parameters

  • CurrentItemID: The id of current selected tab.
  • PreviousItemID: The id of previous selected tab.
  • CurrentItemElement: The dgs-dxtab element of current selected tab.
  • PreviousItemElement: The dgs-dxtab element of previous selected tab.

Source

The source of this event is the dgs tab which has just been selected.

Example

DGS = exports.dgs
tabpanel = DGS:dgsCreateTabPanel(400,200,400,400,false)
tab1 = DGS:dgsCreateTab("DGS",tabpanel)
tab2 = DGS:dgsCreateTab("Tab",tabpanel)
gdlt2 = DGS:dgsCreateButton(10,10,100,120,"test",false,tab1,tocolor(255,255,255,255))

addEventHandler("onDgsTabSelect", tab1, function ( new, old )
	outputChatBox("The tab of tab panel has been changed. ( Current: "..new.."; Previous: "..old.." )")
end)

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