HtmlTextWriter.WriteLineNoTabs(String) Method

Definition

Writes a string, followed by a line terminator string, to the output stream. This method ignores any specified tab spacing.

C#
public void WriteLineNoTabs(string s);

Parameters

s
String

The string to write to the output stream.

Remarks

Use the WriteLineNoTabs method rather than the WriteLine method when you do not want to render any tab spacing ahead of the rendered string s.

The default line terminator string is a carriage return followed by a line feed ("\r\n"). The WriteLine base method is used to write the value parameter.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also