Telerik.Web.Mvc.UI.Html.EditorToolGroupHtmlBuilder.BuildCore C# (CSharp) Method

BuildCore() protected method

protected BuildCore ( ) : IHtmlNode
return IHtmlNode
        protected override IHtmlNode BuildCore()
        {
            var ul = new HtmlTag("ul")
                .AddClass("t-editor-toolbar");

            group.Tools.Each(tool =>
            {
                tool.CreateHtmlBuilder()
                    .Build()
                    .AppendTo(ul);
            });

            return ul;
        }
EditorToolGroupHtmlBuilder