Esempio n. 1
0
/// <summary>
/// Gets the slot object on the child widget as a Grid Slot, allowing you to manipulate layout information.
/// @param Widget The child widget of a grid panel.
/// </summary>
        public static UGridSlot SlotAsGridSlot(UWidget Widget)
        {
            IntPtr ___ret = SlotAsGridSlot(IntPtr.Zero, Widget);

            if (___ret == IntPtr.Zero)
            {
                return(null);
            }
            UGridSlot ___ret2 = new UGridSlot()
            {
                _this = ___ret
            }; return(___ret2);
        }
Esempio n. 2
0
        public UGridSlot AddChildToGrid(UWidget Content)
        {
            CheckIsValid();
            IntPtr ___ret = AddChildToGrid(_this.Get(), Content);

            if (___ret == IntPtr.Zero)
            {
                return(null);
            }
            UGridSlot ___ret2 = new UGridSlot()
            {
                _this = ___ret
            }; return(___ret2);
        }