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.

public:
 void WriteLineNoTabs(System::String ^ s);
public void WriteLineNoTabs (string s);
member this.WriteLineNoTabs : string -> unit
Public Sub WriteLineNoTabs (s As String)

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

See also