IrrlichtNETCP.GUIEnvironment.AddColorSelectDialog C# (CSharp) Method

AddColorSelectDialog() public method

public AddColorSelectDialog ( string title, bool modal, GUIElement parent, int id ) : GUIColorSelectDialog
title string
modal bool
parent GUIElement
id int
return GUIColorSelectDialog
        public GUIColorSelectDialog AddColorSelectDialog(string title, bool modal, GUIElement parent, int id)
        {
            IntPtr par = (parent == null ? IntPtr.Zero : parent.Raw);
            return (GUIColorSelectDialog)NativeElement.GetObject(GuiEnv_AddColorSelectDialog(_raw,
                                                                                             title,
                                                                                             modal,
                                                                                             par,
                                                                                             id),
                                                                 typeof(GUIColorSelectDialog));
        }