Provides access to members that control an image tie point collection.
Members
Name | Description | |
---|---|---|
Add | Adds an image tie point. | |
Append | Appends an image tie point. | |
Count | The image tie point count. | |
Insert | Inserts an image tie point after the specified position. | |
Point | The image tie point at the specified position. | |
Remove | Removes the image tie point at the specified position. | |
RemoveAll | Removes all image tie points. | |
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. |