/// <summary> /// Gets the slot object on the child widget as a Horizontal Box Slot, allowing you to manipulate its information. /// @param Widget The child widget of a Horizontal Box. /// </summary> public static UHorizontalBoxSlot SlotAsHorizontalBoxSlot(UWidget Widget) { IntPtr ___ret = SlotAsHorizontalBoxSlot(IntPtr.Zero, Widget); if (___ret == IntPtr.Zero) { return(null); } UHorizontalBoxSlot ___ret2 = new UHorizontalBoxSlot() { _this = ___ret }; return(___ret2); }
public UHorizontalBoxSlot AddChildToHorizontalBox(UWidget Content) { CheckIsValid(); IntPtr ___ret = AddChildToHorizontalBox(_this.Get(), Content); if (___ret == IntPtr.Zero) { return(null); } UHorizontalBoxSlot ___ret2 = new UHorizontalBoxSlot() { _this = ___ret }; return(___ret2); }