Esempio n. 1
0
/// <summary>
/// Gets the slot object on the child widget as a Vertical Box Slot, allowing you to manipulate its information.
/// @param Widget The child widget of a Vertical Box.
/// </summary>
        public static UVerticalBoxSlot SlotAsVerticalBoxSlot(UWidget Widget)
        {
            IntPtr ___ret = SlotAsVerticalBoxSlot(IntPtr.Zero, Widget);

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

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