Share via


TextSpanHelper.StartsAfterEndOf Method

Determines whether the first span starts after the end of the second span.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
  Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)

Syntax

'Declaration
Public Shared Function StartsAfterEndOf ( _
    span1 As TextSpan, _
    span2 As TextSpan _
) As Boolean
public static bool StartsAfterEndOf(
    TextSpan span1,
    TextSpan span2
)
public:
static bool StartsAfterEndOf(
    TextSpan span1, 
    TextSpan span2
)
static member StartsAfterEndOf : 
        span1:TextSpan * 
        span2:TextSpan -> bool
public static function StartsAfterEndOf(
    span1 : TextSpan, 
    span2 : TextSpan
) : boolean

Parameters

Return Value

Type: System.Boolean
Returns true if the start of span1 is greater than or equal to the end of span2; otherwise, returns false.

Remarks

Use this test to determine whether the first span occurs after the second span.

.NET Framework Security

See Also

Reference

TextSpanHelper Class

Microsoft.VisualStudio.Package Namespace