HtmlTextWriter.Indent 属性

定义

获取或设置用以缩进每一行标记的开始位置的制表符位置数。

public:
 property int Indent { int get(); void set(int value); };
public int Indent { get; set; }
member this.Indent : int with get, set
Public Property Indent As Integer

属性值

Int32

用于缩进每一行的制表符位置数。

示例

下面的代码示例演示如何在属性添加到元素的开始标记<span>RenderBeginTag调用方法时递增分配给属性的值Indent。 这会增加元素内呈现的任何标记的 <span> 缩进。

// Set attributes and values along with attributes and styles  
// attribute defined for a <span> element.
writer.AddAttribute(HtmlTextWriterAttribute.Onclick, "alert('Hello');");
writer.AddAttribute("CustomAttribute", "CustomAttributeValue");
writer.AddStyleAttribute(HtmlTextWriterStyle.Color, "Red");
writer.AddStyleAttribute("Customstyle", "CustomStyleValue");
writer.RenderBeginTag(HtmlTextWriterTag.Span);
// Create a space and indent the markup inside the 
// <span> element.
writer.WriteLine();
writer.Indent++;
' Set attributes and values along with attributes and styles
' attribute defined for a <span> element.
writer.AddAttribute(HtmlTextWriterAttribute.Onclick, "alert('Hello');")
writer.AddAttribute("CustomAttribute", "CustomAttributeValue")
writer.AddStyleAttribute(HtmlTextWriterStyle.Color, "Red")
writer.AddStyleAttribute("CustomStyle", "CustomStyleValue")
writer.RenderBeginTag(HtmlTextWriterTag.Span)

'  Create a space and indent the markup inside the 
' <span> element.
writer.WriteLine()
writer.Indent += 1

注解

缩进是通过编写由构造函数参数HtmlTextWriter(TextWriter, String)指定的字符串来执行的,该字符串由Indent属性指定的tabString次数。

如果属性 Indent 设置为负值,则会在保存之前将其更改为 0。

适用于

另请参阅