IsMultiLine Method

HttpServer.dll

Determines if this node spans over multiple lines.

Namespace:  HttpServer.Rendering.Haml.Rules
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public override bool IsMultiLine(
	LineInfo line,
	bool isContinued
)
Visual Basic (Declaration)
Public Overrides Function IsMultiLine ( _
	line As LineInfo, _
	isContinued As Boolean _
) As Boolean
Visual C++
public:
virtual bool IsMultiLine(
	LineInfo^ line, 
	bool isContinued
) override

Parameters

line
Type: HttpServer.Rendering.Haml..::.LineInfo
contains line information (and text)
isContinued
Type: System..::.Boolean
true if the previous line was continued.

Return Value

true if this line continues onto the next.

See Also