App::appGetString: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{ClientsideCsJsFunction}}
{{JSContainer|
<syntaxhighlight lang="javascript">mp.game.app.appGetString(property);</syntaxhighlight>
{{Parameters}}
* '''property:''' {{RageType|String}}


==Syntax==
<syntaxhighlight lang="javascript">app.appGetString(property);</syntaxhighlight>
=== Required Arguments ===
*'''property:''' String
===Return value===
===Return value===
*'''String'''
* {{RageType|String}}
==Example==
 
{{Example}}
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// 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>
</syntaxhighlight>
==See also==
}}
{{App_function_c}}
[[Category:Clientside API]]
[[Category:TODO: Example]]

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