RAGE.Chat.Show: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "Changes chat visibility state. ==Syntax== <pre>RAGE.Chat.Show(bool toggle);</pre> === Required Arguments === *'''toggle:''' Bool toggle ==Example== {{CSharpContainer| {{Par...")
 
No edit summary
 
Line 20: Line 20:
</syntaxhighlight>
</syntaxhighlight>
}}
}}


==See also==
==See also==
{{Gui_definition_c}}
{{Gui_definition_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]

Latest revision as of 12:34, 16 January 2019

Changes chat visibility state.

Syntax

RAGE.Chat.Show(bool toggle);

Required Arguments

  • toggle: Bool toggle

Example

C# Syntax

Parameters

  • toggle: Bool toggle

Example

public void showChat(bool toggle)
{
    RAGE.Chat.Show(toggle);
}


See also