Перейти к содержанию

SetTextLabelText

Материал из RAGE MP Wiki Archive
Версия от 09:35, 30 ноября 2019; imported>Xabi (Created page with "Sets the text for the given text label. {{CSharpContainer| {{#tag:syntaxhighlight|void {{Template:CSharp_Serverside_namespace}}TextLabel.SetTextLabelText(NetHandle label, st...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Sets the text for the given text label.


<syntaxhighlight lang="csharp">void NAPI.TextLabel.SetTextLabelText(NetHandle label, string newText);</syntaxhighlight>

Parameters

  • label: parameter input should be in NetHandle type
  • newText: parameter input should be in string type


Example

<syntaxhighlight lang="csharp"> // Code here... </syntaxhighlight>