Exemplo n.º 1
0
        public static string GetName(FooterBarAlign type)
        {
            string result = String.Empty;

            switch (type)
            {
                case FooterBarAlign.Left:
                    result = "left";
                    break;
                case FooterBarAlign.Right:
                    result = "right";
                    break;
                case FooterBarAlign.Center:
                    result = "center";
                    break;
            }

            return result;
        }
Exemplo n.º 2
0
        public static string GetName(FooterBarAlign type)
        {
            string result = String.Empty;

            switch (type)
            {
            case FooterBarAlign.Left:
                result = "left";
                break;

            case FooterBarAlign.Right:
                result = "right";
                break;

            case FooterBarAlign.Center:
                result = "center";
                break;
            }

            return(result);
        }