NUnitGoCore.CustomElements.HtmlCustomElements.HorizontalBar.HorizontalBar C# (CSharp) Method

HorizontalBar() public method

public HorizontalBar ( string id, string title, List elements, bool orderByDescending = true ) : System
id string
title string
elements List
orderByDescending bool
return System
        public HorizontalBar(string id, string title, List<HorizontalBarElement> elements, bool orderByDescending = true)
        {
            Id = id;
            _orderByDescending = orderByDescending;
            Style = GetStyle();
            Title = title;
            Elements = elements;
            BarHtml = GetBar();
        }