IrrlichtNETCP.GUIEnvironment.AddMessageBox C# (CSharp) Method

AddMessageBox() public method

public AddMessageBox ( string caption, string text, bool modal, MessageBoxFlag flags, GUIElement parent, int id ) : GUIWindow
caption string
text string
modal bool
flags MessageBoxFlag
parent GUIElement
id int
return GUIWindow
        public GUIWindow AddMessageBox(string caption, string text, bool modal, MessageBoxFlag flags, GUIElement parent, int id)
        {
            IntPtr par = (parent == null ? IntPtr.Zero : parent.Raw);
            return (GUIWindow)NativeElement.GetObject(GuiEnv_AddMessageBox(_raw, caption, text, modal, flags, par, id),
                                                      typeof(GUIWindow));
        }