Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates a ITrackingPoint in this version.
Namespace:  Microsoft.VisualStudio.Text
Assembly:  Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
Syntax
'Declaration
Function CreateTrackingPoint ( _
    position As Integer, _
    trackingMode As PointTrackingMode, _
    trackingFidelity As TrackingFidelityMode _
) As ITrackingPoint
ITrackingPoint CreateTrackingPoint(
    int position,
    PointTrackingMode trackingMode,
    TrackingFidelityMode trackingFidelity
)
ITrackingPoint^ CreateTrackingPoint(
    int position, 
    PointTrackingMode trackingMode, 
    TrackingFidelityMode trackingFidelity
)
abstract CreateTrackingPoint : 
        position:int * 
        trackingMode:PointTrackingMode * 
        trackingFidelity:TrackingFidelityMode -> ITrackingPoint 
function CreateTrackingPoint(
    position : int, 
    trackingMode : PointTrackingMode, 
    trackingFidelity : TrackingFidelityMode
) : ITrackingPoint
Parameters
- position
 Type: System.Int32
 The position of the point.
- trackingMode
 Type: Microsoft.VisualStudio.Text.PointTrackingMode
 The tracking mode of the point.
- trackingFidelity
 Type: Microsoft.VisualStudio.Text.TrackingFidelityMode
 The tracking fidelity of the point.
Return Value
Type: Microsoft.VisualStudio.Text.ITrackingPoint
A non-null ITrackingPoint.
Exceptions
| Exception | Condition | 
|---|---|
| ArgumentOutOfRangeException | position is less than zero or greater than the length of the snapshot. | 
Remarks
This text point returns to its previous position when based on a version that was created by undo or redo.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.