OnDgsTabPanelTabSelect: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 10: Line 10:


==Source==
==Source==
The [[event system#Event source|source]] of this event is the dgs tab whose tab selection has just been changed.
The [[event system#Event source|source]] of this event is the dgs tab panel whose tab selection has just been selected.


==Example==  
==Example==  

Latest revision as of 12:26, 15 August 2018

This event is triggered each time the tab selection of the tab panel 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 panel whose tab selection 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("onDgsTabPanelTabSelect", tabpanel, 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