SyntaxFactory.ElasticWhitespace(String) Method

Definition

Creates a trivia with kind WhitespaceTrivia containing the specified text. Elastic trivia are used to denote trivia that was not produced by parsing source text, and are usually not preserved during formatting.

public:
 static Microsoft::CodeAnalysis::SyntaxTrivia ElasticWhitespace(System::String ^ text);
public static Microsoft.CodeAnalysis.SyntaxTrivia ElasticWhitespace (string text);
static member ElasticWhitespace : string -> Microsoft.CodeAnalysis.SyntaxTrivia
Public Shared Function ElasticWhitespace (text As String) As SyntaxTrivia

Parameters

text
String

The text of the whitespace. Any text can be specified here, however only specific whitespace characters are recognized by the parser.

Returns

Applies to