Exemplo n.º 1
0
        public IHtmlHelper CreateGlyph(GlyphType type, string id = "", string @class = "")
        {
            var g = new BootstrapGlyph(type);

            g.Id = id;
            g.Classes.Add(@class);

            return(RenderToPage(g));
        }
Exemplo n.º 2
0
        public MvcHtmlString Glyph(GlyphType type, string id = "", string @class = "")
        {
            var g = new BootstrapGlyph(type);

            g.Id = id;
            g.Classes.Add(@class);

            return(Render(g));
        }
Exemplo n.º 3
0
 public IHtmlHelper CreateGlyph(BootstrapGlyph glyph)
 {
     return(RenderToPage(glyph));
 }
Exemplo n.º 4
0
 public MvcHtmlString Glyph(BootstrapGlyph glyph)
 {
     return(Render(glyph));
 }