IrrlichtNETCP.GUIEnvironment.AddComboBox C# (CSharp) Method

AddComboBox() public method

public AddComboBox ( IrrlichtNETCP.Rect rectangle, GUIElement parent, int id ) : GUIComboBox
rectangle IrrlichtNETCP.Rect
parent GUIElement
id int
return GUIComboBox
        public GUIComboBox AddComboBox(Rect rectangle, GUIElement parent, int id)
        {
            IntPtr par = (parent == null ? IntPtr.Zero : parent.Raw);
            return (GUIComboBox)NativeElement.GetObject(GuiEnv_AddComboBox(_raw, rectangle.ToUnmanaged(), par, id),
                                                      typeof(GUIComboBox));
        }