DgsProgressBarGetStyleProperties: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} This function returns properies from a progress bar. ==Syntax== <syntaxhighlight lang="lua"> bool dgsProgressBarGetStyleProperties( element progressbar)...")
 
(Blanked the page)
Tag: Blanking
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Client function}}


This function returns properies from a progress bar.
==Syntax==
<syntaxhighlight lang="lua">
bool dgsProgressBarGetStyleProperties( element progressbar)
</syntaxhighlight>
===Required Arguments===
*'''progressbar:''' A progress bar you want to get properties from
===Returns===
Return style properties name of the progress bar if properties were found successfully, ''false'' otherwise.
<section name="Client" class="client" show="true">
'''Example 1:''
<syntaxhighlight lang="lua">
DGS = exports.dgs
local pbRoundOptional = DGS:dgsCreateProgressBar(100,200,600,600,false)
DGS:dgsProgressBarSetProgress(pbRoundOptional, 50)
DGS:dgsProgressBarSetStyle(pbRoundOptional,"ring-round",{
isReverse = false,
rotation = 90,
antiAliased = 0.005,
radius = 0.2,
thickness = 0.01})
iprint(DGS:dgsProgressBarGetStyleProperties(pbRoundOptional)) -- returns properties into debugscript
</syntaxhighlight>
</section>
==See Also==
{{DGSFUNCTIONS}}

Latest revision as of 17:24, 6 June 2021