FairyGUI.ScrollPane.ScrollBottom C# (CSharp) Method

ScrollBottom() public method

public ScrollBottom ( ) : void
return void
        public void ScrollBottom()
        {
            ScrollBottom(false);
        }

Same methods

ScrollPane::ScrollBottom ( bool ani ) : void

Usage Example

    static int ScrollBottom(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 1)
            {
                FairyGUI.ScrollPane obj = (FairyGUI.ScrollPane)ToLua.CheckObject <FairyGUI.ScrollPane>(L, 1);
                obj.ScrollBottom();
                return(0);
            }
            else if (count == 2)
            {
                FairyGUI.ScrollPane obj = (FairyGUI.ScrollPane)ToLua.CheckObject <FairyGUI.ScrollPane>(L, 1);
                bool arg0 = LuaDLL.luaL_checkboolean(L, 2);
                obj.ScrollBottom(arg0);
                return(0);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.ScrollPane.ScrollBottom"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
All Usage Examples Of FairyGUI.ScrollPane::ScrollBottom