DgsGetType

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

This function is used to retrieve the type of a dgs element, an element even a string/number/bool value.

Syntax

string dgsGetType ( mixed theMixed )  

DGS OOP Syntax Help! I don't understand this!

Method: DGSElement:getType(...)

Required Arguments

  • theMixed: What you wish to get the type of.

Returns

Returns a string containing the type, false if invalid arguments were passed.

Example

DGS = exports.dgs

label = DGS:dgsCreateLabel(100,100,200,50,"Test Label",false)
outputChatBox(DGS:dgsGetType(label)) -- returns "dgs-dxlabel"

outputChatBox(DGS:dgsGetType("str")) -- returns "string"

See Also

General Functions

General Events