PL/dgsSetPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{PL/Client function}} __NOTOC__ Ta funkcja pozwala ustawić pozycję elementu DGS. ==Składnia== <syntaxhighlight lang="lua"> bool dgsSetPosition ( element theElement, float...")
 
mNo edit summary
Line 4: Line 4:
==Składnia==  
==Składnia==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsSetPosition ( element theElement, float x, float y, bool relative )
bool dgsSetPosition ( element dgsElement, float x, float y, bool relative )
</syntaxhighlight>  
</syntaxhighlight>  


===Wymagane Argumenty===  
===Wymagane Argumenty===  
<!-- List each argument one per line. This should be the argument's name as in the argument list above, NOT the argument's data type -->
<!-- List each argument one per line. This should be the argument's name as in the argument list above, NOT the argument's data type -->
*'''theElement:''' Element DGS, którego pozycja ma zostać zmieniona.
*'''dgsElement:''' Element DGS, którego pozycja ma zostać zmieniona.
*'''x:''' Pozycja w osi ''X''
*'''x:''' Pozycja w osi ''X''
*'''y:''' Pozycja w osi ''Y''
*'''y:''' Pozycja w osi ''Y''

Revision as of 21:40, 28 July 2019

Ta funkcja pozwala ustawić pozycję elementu DGS.

Składnia

bool dgsSetPosition ( element dgsElement, float x, float y, bool relative )

Wymagane Argumenty

  • dgsElement: Element DGS, którego pozycja ma zostać zmieniona.
  • x: Pozycja w osi X
  • y: Pozycja w osi Y
  • relative: Określa, czy wprowadzona pozycja jest w formie względnej. Jeśli true, to wartość powinna znajdować się w przedziale od 0 do 1.

Wynik

Zwraca true jeśli pozycja została ustawiona poprawnie, lub false jeśli ustawienie pozycji nie powiodło się.

Przykład

Ten przykład tworzy label oraz ustawia jego pozycję w miejscu kliknięcia.

DGS = exports.dgs
-- stworzenie pola tekstowego
local myLabel = DGS:dgsCreateLabel  ( 0, 0, 1, 1, "", true )

function addLabelOnClick ( button, state, absoluteX, absoluteY, worldX, worldY, worldZ, clickedElement )
	if ( clickedElement ) then
		-- pobranie rodzaju elementu
		local elementType = DGS:dgsGetType ( clickedElement )
		-- ustawienie tekstu pola tekstowego
		DGS:dgsSetText ( myLabel, elementType )
		-- zmiana pozycji klikniętego elementu
		DGS:dgsSetPosition ( myLabel, absoluteX, absoluteY, false )
		-- ukrywa label poprzez ustawienie jego tekstu na "" po 5 sekundach od kliknięcia
		setTimer ( DGS:dgsSetText, 5000, 1, myLabel, "" )
	end
end
addEventHandler ( "onDgsMouseClick", getRootElement(), addLabelOnClick )

Zobacz również

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker