ITiePointCollection Interface

Provides access to members that control an image tie point collection.

Members

Name Description
Method Add Adds an image tie point.
Method Append Appends an image tie point.
Read-only property Count The image tie point count.
Method Insert Inserts an image tie point after the specified position.
Read-only property Point The image tie point at the specified position.
Method Remove Removes the image tie point at the specified position.
Method RemoveAll Removes all image tie points.
Method Replace Replaces an image tie point at the specified position.

ITiePointCollection.Add Method

Adds an image tie point.

Public Sub Add ( _
    ByVal pPoint As ITiePoint _
)
public void Add (
    ITiePoint pPoint
);

ITiePointCollection.Append Method

Appends an image tie point.

Public Sub Append ( _
    ByVal pPoint As ITiePoint _
)
public void Append (
    ITiePoint pPoint
);

ITiePointCollection.Count Property

The image tie point count.

Public ReadOnly Property Count As Integer
public int Count {get;}

ITiePointCollection.Insert Method

Inserts an image tie point after the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pPoint As ITiePoint _
)
public void Insert (
    int Index,
    ITiePoint pPoint
);

ITiePointCollection.Point Property

The image tie point at the specified position.

Public Function get_Point ( _
    ByVal Index As Integer _
) As ITiePoint
public ITiePoint get_Point (
    int Index
);

ITiePointCollection.Remove Method

Removes the image tie point at the specified position.

Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);

ITiePointCollection.RemoveAll Method

Removes all image tie points.

Public Sub RemoveAll ( _
)
public void RemoveAll (
);

ITiePointCollection.Replace Method

Replaces an image tie point at the specified position.

Public Sub Replace ( _
    ByVal Index As Integer, _
    ByVal pPoint As ITiePoint _
)
public void Replace (
    int Index,
    ITiePoint pPoint
);

Classes that implement ITiePointCollection

Classes Description
TiePointCollection The Image Tie point collection class.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.