DgsCmdGetEdit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Thisdp moved page DgsDxCmdGetEdit to DgsCmdGetEdit)
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">string dgsDxCmdGetEdit (element cmd)</syntaxhighlight>
<syntaxhighlight lang="lua">string dgsCmdGetEdit (element cmd)</syntaxhighlight>


==Required Arguments==
==Required Arguments==
*'''Cmd:'''  The cmd window.
*'''Cmd:'''  The cmd you want to get from.


==Example==
==Example==
'''Example :'''
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
DGS = exports.dgs
DGS = exports.dgs
cmd = DGS:dgsDxCreateCmd(310, 208, 505, 429,false)
cmd = DGS:dgsCreateCmd(310, 208, 505, 429,false)


 
addCommandHandler("test",function (_)
addCommandHandler("22",function (_)
local edit = DGS:dgsCmdGetEdit(cmd)
arg = DGS:dgsDxCmdGetEdit(cmd)
DGS:dgsSetText(edit,"netstatus")
DGS:outputCmdMessage(cmd,arg)
end)
end )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{DGSFUNCTIONS}}
{{DGSFUNCTIONS}}

Latest revision as of 11:23, 20 January 2018

This function is used to get the text of cmd elements

Syntax

string dgsCmdGetEdit (element cmd)

Required Arguments

  • Cmd: The cmd you want to get from.

Example

DGS = exports.dgs
cmd = DGS:dgsCreateCmd(310, 208, 505, 429,false)

addCommandHandler("test",function (_)
	local edit  = DGS:dgsCmdGetEdit(cmd)
	DGS:dgsSetText(edit,"netstatus")
end)

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips