Difference between revisions of "MessageBox - Debug/ru"
Jump to navigation
Jump to search
imported>Peganoff (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Debug Script Displays a single-button OK message box containing the specified text. == Syntax == <source lan...") |
imported>Peganoff |
||
Line 1: | Line 1: | ||
[[Category:Scripting]] | [[Category:Scripting]] | ||
[[Category:Papyrus]] | [[Category:Papyrus]] | ||
''' | '''Часть:''' [[Debug Script]] | ||
Отображение одной кнопки OK в окне сообщения, содержащие указанный текст. | |||
== | == Синтаксис == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
Function MessageBox(string asMessageBoxText) native global | Function MessageBox(string asMessageBoxText) native global | ||
</source> | </source> | ||
== | == Параметры == | ||
*asMessageBoxText: | *asMessageBoxText: Текст, который должен отображаться в окне сообщения. | ||
== | == Возвращаемое значение == | ||
Нет | |||
== | == Пример == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; Display the class 'hello world' box | ; Display the class 'hello world' box | ||
Line 22: | Line 22: | ||
</source> | </source> | ||
== | == Смотреть также == | ||
*[[Debug Script]] | *[[Debug Script]] | ||
*[[Notification - Debug]] | *[[Notification - Debug]] |
Latest revision as of 13:34, 30 August 2012
Часть: Debug Script
Отображение одной кнопки OK в окне сообщения, содержащие указанный текст.
Синтаксис[edit | edit source]
Function MessageBox(string asMessageBoxText) native global
Параметры[edit | edit source]
- asMessageBoxText: Текст, который должен отображаться в окне сообщения.
Возвращаемое значение[edit | edit source]
Нет
Пример[edit | edit source]
; Display the class 'hello world' box
Debug.MessageBox("Hello, world!")
Смотреть также[edit | edit source]
Language: | English |
---|