TextSpanHelper::IsEmbedded Method (TextSpan, TextSpan)

 

Determines whether the first span is wholly contained in the second span.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
static bool IsEmbedded(
	TextSpan span1,
	TextSpan span2
)

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: System::Boolean

Returns true if the two spans are different and the start of span1 is equal to or greater than the start of span2 and the end of span1 is less than or equal to the end of span2; otherwise, returns false.

This method returns true if the two spans are not equal, and calls to the StartsAfterStartOf and EndsBeforeEndOf methods both return true.

Return to top
Show: