SnapshotPoint::LessThan Operator (SnapshotPoint, SnapshotPoint)

 

Determines whether the position of the left point is less than the position of the right point.

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

public:
static bool operator <(
	SnapshotPoint left,
	SnapshotPoint right
)

Parameters

left
Type: Microsoft.VisualStudio.Text::SnapshotPoint

The left-hand snapshot point.

right
Type: Microsoft.VisualStudio.Text::SnapshotPoint

The right-hand snapshot point.

Return Value

Type: System::Boolean

true if left.Position is greater than right.Position, otherwise false.

Exception Condition
ArgumentException

The two points do not belong to the same snapshot.

Return to top
Show: