ComponentFactory.Krypton.Toolkit.RenderStandard.GetTabBorderLeftDrawing C# (CSharp) Method

GetTabBorderLeftDrawing() public method

Gets if the tabs should be drawn from left to right for z-ordering.
public GetTabBorderLeftDrawing ( TabBorderStyle tabBorderStyle ) : bool
tabBorderStyle TabBorderStyle Style of tab border.
return bool
        public override bool GetTabBorderLeftDrawing(TabBorderStyle tabBorderStyle)
        {
            switch (tabBorderStyle)
            {
                case TabBorderStyle.OneNote:
                    return false;
                default:
                    return true;
            }
        }
RenderStandard