Aura.Channel.Network.Sending.Send.MsgBox C# (CSharp) Метод

MsgBox() публичный статический Метод

Sends MsgBox to creature's client.
public static MsgBox ( Creature creature, MsgBoxTitle title, MsgBoxButtons buttons, MsgBoxAlign align, string format ) : void
creature Creature
title MsgBoxTitle
buttons MsgBoxButtons
align MsgBoxAlign
format string
Результат void
		public static void MsgBox(Creature creature, MsgBoxTitle title, MsgBoxButtons buttons, MsgBoxAlign align, string format, params object[] args)
		{
			MsgBox(creature, title.ToString(), MsgBoxButtons.Close, MsgBoxAlign.Center, format, args);
		}

Same methods

Send::MsgBox ( Creature creature, string format ) : void
Send::MsgBox ( Creature creature, string title, MsgBoxButtons buttons, MsgBoxAlign align, string format ) : void
Send