App::appGetString: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
==Syntax==<syntaxhighlight lang="javascript">app.appGetString(property);</syntaxhighlight>=== Required Arguments ===*'''property:''' String===Return value===*'''String'''==Example==<syntaxhighlight lang="javascript">todo</syntaxhighlight>==See also=={{App_function_c}}[[Category:Clientside API]][[Category:TODO: Example]]
{{ClientsideCsJsFunction}}
{{JSContainer|
<syntaxhighlight lang="javascript">mp.game.app.appGetString(property);</syntaxhighlight>
 
{{Parameters}}
* '''property:''' {{RageType|String}}
 
===Return value===
* {{RageType|String}}
 
{{Example}}
<syntaxhighlight lang="javascript">
// todo
</syntaxhighlight>
}}
 
{{CSharpContainer|
<syntaxhighlight lang="csharp">RAGE.Game.App.AppGetString(property);</syntaxhighlight>
 
{{Parameters}}
* '''property:''' {{RageType|string}}
 
===Return value===
* {{RageType|string}}
 
{{Example}}
<syntaxhighlight lang="csharp">
// todo
</syntaxhighlight>
}}

Latest revision as of 11:08, 24 December 2022

Client-Side Function

 C#  JavaScript


JavaScript Syntax

mp.game.app.appGetString(property);

Parameters

  • property: String

Return value

  • String

Example

// todo



C# Syntax

RAGE.Game.App.AppGetString(property);

Parameters

  • property: string

Return value

  • string

Example

// todo