IndentedTextWriter::WriteLineNoTabs Method (String^)

 

Writes the specified string to a line without tabs.

Namespace:   System.CodeDom.Compiler
Assembly:  System (in System.dll)

public:
void WriteLineNoTabs(
	String^ s
)

Parameters

s
Type: System::String^

The string to write.

The following code example demonstrates writing a line without tab string indentations.

// Outputs a string using the WriteLineNoTabs method.
      indentWriter->WriteLineNoTabs( "This is a test phrase written with the IndentTextWriter.WriteLineNoTabs method." );

.NET Framework
Available since 1.1
Return to top
Show: