DgsMemoAppendText: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function append a part of text from to memo. ==Syntax== <syntaxhighlight lang="lua"> bool dgsMemoInsertText ( element theElement, string...")
 
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
This function append a part of text from to memo.
This function append the text to memo.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsMemoInsertText ( element theElement, string text )
bool dgsMemoInsertText ( element memo, string text )
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===  
===Required Arguments===  
*'''theElement:''' The memo to be changed.
*'''memo:''' The memo to be changed.
*'''text:''' A string that you want to append into the memo.
*'''text:''' A string that you want to append into the memo.


===Returns===
===Returns===
Returns ''true'' if the text is inserted into the memo successfully, ''false'' otherwise.
Returns ''true'' if the text is appended successfully, ''false'' otherwise.


==Example==
==Example==

Revision as of 09:59, 26 April 2020

This function append the text to memo.

Syntax

bool dgsMemoInsertText ( element memo, string text )

Required Arguments

  • memo: The memo to be changed.
  • text: A string that you want to append into the memo.

Returns

Returns true if the text is appended successfully, false otherwise.

Example

DGS = exports.dgs
memo = DGS:dgsCreateMemo(500,200,200,300,"This is ",false)
DGS:dgsMemoAppendText(memo,"a dgs-dxmemo")

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