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

            if (___ret == IntPtr.Zero)
            {
                return(null);
            }
            UUniformGridSlot ___ret2 = new UUniformGridSlot()
            {
                _this = ___ret
            }; return(___ret2);
        }
Ejemplo n.º 2
0
        public UUniformGridSlot AddChildToUniformGrid(UWidget Content)
        {
            CheckIsValid();
            IntPtr ___ret = AddChildToUniformGrid(_this.Get(), Content);

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