SpanEditHandler.IsEndReplace Method
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for replacement.
Namespace: System.Web.Razor.Editor
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Protected Friend Shared Function IsEndReplace ( _
target As Span, _
change As TextChange _
) As Boolean
'Usage
Dim target As Span
Dim change As TextChange
Dim returnValue As Boolean
returnValue = SpanEditHandler.IsEndReplace(target, _
change)
protected internal static bool IsEndReplace(
Span target,
TextChange change
)
protected public:
static bool IsEndReplace(
Span^ target,
TextChange change
)
static member IsEndReplace :
target:Span *
change:TextChange -> bool
static function IsEndReplace(
target : Span,
change : TextChange
) : boolean
Parameters
- target
Type: System.Web.Razor.Parser.SyntaxTree.Span
The span to check.
- change
Type: System.Web.Razor.Text.TextChange
The change to check.
Return Value
Type: System.Boolean
true if the specified change is at the end the span content and for replacement; otherwise, false.