VirtualSnapshotPoint.LessThan Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the position of the left point is less than the position of the right point.
public:
static bool operator <(Microsoft::VisualStudio::Text::VirtualSnapshotPoint left, Microsoft::VisualStudio::Text::VirtualSnapshotPoint right);
public static bool operator < (Microsoft.VisualStudio.Text.VirtualSnapshotPoint left, Microsoft.VisualStudio.Text.VirtualSnapshotPoint right);
static member ( < ) : Microsoft.VisualStudio.Text.VirtualSnapshotPoint * Microsoft.VisualStudio.Text.VirtualSnapshotPoint -> bool
Public Shared Operator < (left As VirtualSnapshotPoint, right As VirtualSnapshotPoint) As Boolean
Parameters
- left
- VirtualSnapshotPoint
The left-hand point.
- right
- VirtualSnapshotPoint
The right-hand point.
Returns
true
if left.Position is less than right.Position, otherwise false
.
Exceptions
If the snapshots of the points do not match.