DgsSetProperty: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(DGS (OOP Syntax)/(Template Organization) Mission)
Line 9: Line 9:
string dgsSetProperty ( element/table dgsElement, string property, mixed value [, mixed arg1, mixed arg2 ... ] )
string dgsSetProperty ( element/table dgsElement, string property, mixed value [, mixed arg1, mixed arg2 ... ] )
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP||DGSElement:setProperty|||dgsGetProperty}}


===Required Arguments===
===Required Arguments===
Line 29: Line 30:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
=See Also=
{{DGSFUNCTIONS}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">DGS Properties</span>==
{{DGSPROPERTIES}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Functions</span>==
{{DGS General Functions}}
 
==<span style="color:#eb3f00;text-shadow:0.05em 0.05em 0.2em #00000099;">General Events</span>==
{{DGS Events/General}}

Revision as of 16:38, 19 April 2021

This function sets the value of a specific property of a DGS element. For a list of properties and their meaning, see the DGS properties page.

Note: If you push a value improperly, errors or warnings will occur, which may cause lag and debug info spamming.

Syntax

string dgsSetProperty ( element/table dgsElement, string property, mixed value [, mixed arg1, mixed arg2 ... ] )

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

Required Arguments

  • dgsElement: the DGS element or a list of DGS elements you wish to set a property to.
  • property: the name of of property you want the value to.
  • value: the value you want to set.

Optional Arguments

  • arg...: extra value of some properties.

Returns

If the function succeeds, it returns true, false otherwise.

Example

This example creates a label whose text can be changed by itself.

DGS = exports.dgs
button = DGS:dgsCreateLabel(20, 200, 150, 30, "Test", false)
code = "return getTickCount()"
DGS:dgsSetProperty(button, "functions", code)

See Also

DGS Properties

General Properties

Unique Properties For DGS Core Elements

Extra Properties For DGS Plugins

General Functions

General Events