Table of Contents
HtmlIndentWidth Property

Gets or sets the indent amount in character for inner HTML elements while formatting editor contents into HTML.

Syntax
 public Int32 HtmlIndentWidth { get; set; }
Remarks

This property set the amount of indent between an inner HTML element and its parent element when formatting the editor contents into HTML. For example, the indent between the first and second div elements for the following HTML:

HTML
<div>
    <div>some text</div>
</div>

The property is not to be confused with IndentWidth, which specifies the amount of indent in pixel when user uses the Indent command to indent a block in edit (Design) mode.

See Also