Bloom.Book.Book.GetBookDomWithStyleSheets C# (CSharp) Method

GetBookDomWithStyleSheets() private method

private GetBookDomWithStyleSheets ( ) : HtmlDom
return HtmlDom
        private HtmlDom GetBookDomWithStyleSheets(params string[] cssFileNames)
        {
            var dom = _storage.GetRelocatableCopyOfDom(_log);
            dom.RemoveModeStyleSheets();
            foreach (var cssFileName in cssFileNames)
            {
                dom.AddStyleSheet(cssFileName);
            }
            dom.SortStyleSheetLinks();

            return dom;
        }
Book