IrrlichtNETCP.GUIEnvironment.AddCheckBox C# (CSharp) Method

AddCheckBox() public method

public AddCheckBox ( bool ischecked, IrrlichtNETCP.Rect rectangle, GUIElement parent, int id, string text ) : GUICheckBox
ischecked bool
rectangle IrrlichtNETCP.Rect
parent GUIElement
id int
text string
return GUICheckBox
        public GUICheckBox AddCheckBox(bool ischecked, Rect rectangle, GUIElement parent, int id, string text)
        {
            IntPtr par = (parent == null ? IntPtr.Zero : parent.Raw);
            return (GUICheckBox)NativeElement.GetObject(GuiEnv_AddCheckBox(_raw, ischecked, rectangle.ToUnmanaged(), par, id, text),
                                                      typeof(GUICheckBox));
        }