newtelligence.DasBlog.Util.Html.HtmlFormatterOptions.HtmlFormatterOptions C# (CSharp) Method

HtmlFormatterOptions() public method

public HtmlFormatterOptions ( char indentChar, int indentSize, int maxLineLength, HtmlFormatterCase elementCasing, HtmlFormatterCase attributeCasing, bool makeXhtml )
indentChar char
indentSize int
maxLineLength int
elementCasing HtmlFormatterCase
attributeCasing HtmlFormatterCase
makeXhtml bool
        public HtmlFormatterOptions(char indentChar, int indentSize, int maxLineLength, HtmlFormatterCase elementCasing, HtmlFormatterCase attributeCasing, bool makeXhtml)
        {
            _indentChar = indentChar;
            _indentSize = indentSize;
            _maxLineLength = maxLineLength;
            _elementCasing = elementCasing;
            _attributeCasing = attributeCasing;
            _makeXhtml = makeXhtml;
        }

Same methods

HtmlFormatterOptions::HtmlFormatterOptions ( char indentChar, int indentSize, int maxLineLength, bool makeXhtml )
HtmlFormatterOptions