Span.ChangeStart Method
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Sets the start character location of this span.
Namespace: System.Web.Razor.Parser.SyntaxTree
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Sub ChangeStart ( _
newStart As SourceLocation _
)
'Usage
Dim instance As Span
Dim newStart As SourceLocation
instance.ChangeStart(newStart)
public void ChangeStart(
SourceLocation newStart
)
public:
void ChangeStart(
SourceLocation newStart
)
member ChangeStart :
newStart:SourceLocation -> unit
public function ChangeStart(
newStart : SourceLocation
)
Parameters
- newStart
Type: System.Web.Razor.Text.SourceLocation
The new start location to set for this span.