DgsSetPositionAlignment: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(DGS (OOP Syntax)/(Template Organization) Mission)
Line 1: Line 1:
{{Client function}}
__NOTOC__{{Client function}}


This function to set the alignment of position of a specific DGS element
This function to set the alignment of position of a specific DGS element
Line 6: Line 6:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsSetPositionAlignment( element dgsElement [, string horizontalAlignment, string verticalAlignment ] )
bool dgsSetPositionAlignment( element dgsElement [, string horizontalAlignment, string verticalAlignment ] )
</syntaxhighlight>  
</syntaxhighlight>
{{DGS/OOP|The '''Variable''' has the following using:
* <code>positionAlignment[1]</code> for '''horizontal''' alignment
* <code>positionAlignment[2]</code> for '''vertical''' alignment
|DGSElement:setPositionAlignment||positionAlignment|dgsGetPositionAlignment}}


===Required Arguments===  
===Required Arguments===  
Line 35: Line 39:


==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}}

Revision as of 17:57, 19 April 2021

This function to set the alignment of position of a specific DGS element

Syntax

bool dgsSetPositionAlignment( element dgsElement [, string horizontalAlignment, string verticalAlignment ] )

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

Required Arguments

  • dgsElement: The DGS element to change the alignment.

Optional Arguments

  • horizontalAlignment: A string of horizontal alignment. Available values are as follows:
    • left
    • center
    • right
  • verticalAlignment : A string of vertical alignment. Available values are as follows:
    • top
    • center
    • bottom

Returns

Return true if successful, false otherwise.

Example

DGS = exports.dgs

local window = DGS:dgsCreateWindow(0.40, 0.33, 0.20, 0.21, "DGS Window", true)
local button = DGS:dgsCreateButton(0.0, 0.0, 0.2, 0.1, "Ok", true, window)

DGS:dgsSetPositionAlignment(button, "right", "top") -- Now x=0,y=0 means right-top

See Also

General Functions

General Events