IrrlichtNETCP.GUIEnvironment.AddColorSelectDialog C# (CSharp) 메소드

AddColorSelectDialog() 공개 메소드

public AddColorSelectDialog ( string title, bool modal, GUIElement parent, int id ) : GUIColorSelectDialog
title string
modal bool
parent GUIElement
id int
리턴 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));
        }