다음을 통해 공유


TextSpanHelper.IsEmbedded Method

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

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

Syntax

‘선언
Public Shared Function IsEmbedded ( _
    span1 As TextSpan, _
    span2 As TextSpan _
) As Boolean
‘사용 방법
Dim span1 As TextSpan
Dim span2 As TextSpan
Dim returnValue As Boolean

returnValue = TextSpanHelper.IsEmbedded(span1, _
    span2)
public static bool IsEmbedded(
    TextSpan span1,
    TextSpan span2
)
public:
static bool IsEmbedded(
    TextSpan span1, 
    TextSpan span2
)
static member IsEmbedded : 
        span1:TextSpan * 
        span2:TextSpan -> bool 
public static function IsEmbedded(
    span1 : TextSpan, 
    span2 : TextSpan
) : boolean

Parameters

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.

Remarks

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

.NET Framework Security

See Also

Reference

TextSpanHelper Class

TextSpanHelper Members

Microsoft.VisualStudio.Package Namespace