TextSpanHelper.StartsBeforeStartOf Method
Determines whether the first span starts before the start of the second span.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.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)
Microsoft.VisualStudio.Package.LanguageService.12.0 (in Microsoft.VisualStudio.Package.LanguageService.12.0.dll)
Syntax
'Declaration
Public Shared Function StartsBeforeStartOf ( _
span1 As TextSpan, _
span2 As TextSpan _
) As Boolean
public static bool StartsBeforeStartOf(
TextSpan span1,
TextSpan span2
)
public:
static bool StartsBeforeStartOf(
TextSpan span1,
TextSpan span2
)
static member StartsBeforeStartOf :
span1:TextSpan *
span2:TextSpan -> bool
public static function StartsBeforeStartOf(
span1 : TextSpan,
span2 : TextSpan
) : boolean
Parameters
span1
Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan[in] The first TextSpan object.
span2
Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan[in] The second TextSpan object.
Return Value
Type: Boolean
Returns true if the start of span1 is less than the start of span2; otherwise, returns false.
Remarks
This method calls the StartsAfterStartOf method and returns the logical opposite result. Use this method to determine whether the first span occurs before the second span. This test does not mean the two spans intersect, only that the start of the first span occurs after the start of the second span.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.