OnDgsEditAccepted

From Multi Theft Auto: Wiki
Revision as of 14:24, 9 September 2019 by Thisdp (talk | contribs) (→‎Parameters)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event is triggered when enter is pressed on a dgs edit box.

Parameters

element editBox, bool isAutoCompleteConfirmed
  • editBox: the dgs edit box which had focus.
  • isAutoCompleteConfirmed: A bool of whether the accept operation is triggered by auto completion confirm.

Source

The source of this event is the dgs edit box which enter was pressed on.

Example

This example creates a dgs edit box and prints a message when enter is pressed.

DGS = exports.dgs
editBox = DGS:dgsCreateEdit ( 0.3, 0.1, 0.4, 0.1, "", true )
addEventHandler( "onDgsEditAccepted", editBox,
    function( theElement ) 
        outputChatBox( DGS:dgsGetText( theElement ) )
    end
)

See Also

General

Check Box

Combo Box

Drag'N Drop

Edit

Grid List

Menu

Selector

Mouse

Radio Button

Switch Button

Tab

Animation

Plugin

Media

Color Picker

QRCode

Remote Image

Client event functions