public static void ParserBorderSize(string[] parms, params object[] objects)
        {
            BorderPanel borderPanel = (BorderPanel)objects[0];

            float left   = StringConverter.ParseFloat(parms[0]);
            float right  = StringConverter.ParseFloat(parms[1]);
            float top    = StringConverter.ParseFloat(parms[2]);
            float bottom = StringConverter.ParseFloat(parms[3]);

            borderPanel.SetBorderSize(left, right, top, bottom);
        }