SnapshotSpan::IntersectsWith Method (SnapshotSpan)

 

Determines whether the specified snapshot span intersects this span.

Namespace:   Microsoft.VisualStudio.Text
Assembly:  Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)

public:
bool IntersectsWith(
	SnapshotSpan snapshotSpan
)

Parameters

snapshotSpan
Type: Microsoft.VisualStudio.Text::SnapshotSpan

The span to check.

Return Value

Type: System::Boolean

true if the spans intersect, otherwise false.

Two spans intersect if they have positions in common, or if the end of one span coincides with the start of the other span, and neither is empty.

Return to top
Show: