Difference between revisions of "MessageBox - Debug/ru"

From the CreationKit Wiki
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]]
'''Member of:''' [[Debug Script]]
'''Часть:''' [[Debug Script]]


Displays a single-button OK message box containing the specified text.
Отображение одной кнопки OK в окне сообщения, содержащие указанный текст.


== Syntax ==
== Синтаксис ==
<source lang="papyrus">
<source lang="papyrus">
Function MessageBox(string asMessageBoxText) native global
Function MessageBox(string asMessageBoxText) native global
</source>
</source>


== Parameters ==
== Параметры ==
*asMessageBoxText: The text that should be displayed in the message box.
*asMessageBoxText: Текст, который должен отображаться в окне сообщения.


== Return Value ==
== Возвращаемое значение ==
None
Нет


== Examples ==
== Пример ==
<source lang="papyrus">
<source lang="papyrus">
; Display the class 'hello world' box
; Display the class 'hello world' box
Line 22: Line 22:
</source>
</source>


== See Also ==
== Смотреть также ==
*[[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