DgsCenterElement: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(DGS (OOP Syntax)/(Template Organization) Mission)
 
Line 4: Line 4:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsCenterElement ( element dgsElement [, bool remainX, bool remainY ] )
bool dgsCenterElement ( element dgsElement [, bool remainX, bool remainY ] )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|
    Method = DGSElement:center
}}


===Required Arguments===
===Required Arguments===
Line 28: Line 31:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
=See Also=
{{DGSFUNCTIONS}}
 
==<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}}

Latest revision as of 23:18, 3 May 2021

Syntax

bool dgsCenterElement ( element dgsElement [, bool remainX, bool remainY ] )

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

Method: DGSElement:center(...)

Required Arguments

Example
  • element: The DGS element to center

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • remainX: A bool indicates whether to remain X position while centering the window
  • remainY: A bool indicates whether to remain Y position while centering the window

Example

DGS = exports.dgs

window1 = DGS:dgsCreateWindow(100,50,200,200,"Center",false)	--Create window1
window2 = DGS:dgsCreateWindow(100,50,200,200,"RemainX",false)	--Create window2
window3 = DGS:dgsCreateWindow(100,50,200,200,"RemainY",false)	--Create window3

DGS:dgsCenterElement(window1) -- center window1
DGS:dgsCenterElement(window2, true, false) -- center window2 with remaining X
DGS:dgsCenterElement(window3, false, true)-- center window3 with remaining Y

See Also

General Functions

General Events