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

GetLayoutChoices() public method

public GetLayoutChoices ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Layout> GetLayoutChoices()
        {
            try
            {
                return SizeAndOrientation.GetLayoutChoices(OurHtmlDom, _storage.GetFileLocator());
            }
            catch (Exception error)
            {
                _log.WriteError(error.Message);
                throw error;
            }
        }
Book