ArcObjects Library Reference (DefenseSolutions)  

ICoordinate.AddOutputCoordinate Method

AddOutputCoordinate, adds a target coordinate to the set which automatically receive this Coordinates output.

[Visual Basic .NET]
Public Sub AddOutputCoordinate ( _
    ByVal ipTargetCoord As ICoordinate _
)
[C#]
public void AddOutputCoordinate (
    ICoordinate ipTargetCoord
);
[C++]
HRESULT AddOutputCoordinate(
  ICoordinate* ipTargetCoord
);
[C++]

Parameters

ipTargetCoord [in]

  ipTargetCoord is a parameter of type ICoordinate

Product Availability

Available with ArcGIS Engine and ArcGIS Desktop.

Description

Specifies that the output of this Coordinate is forwarded to the input of the target Coordinate. This allows multiple conversions to be performed (to different coordinate formats or OutputSpatialReferences) without explicitly passing each value from one Coordinate object to another.  You can add multiple target Coordinates, but you can't add the same target Coordinate more than once simple cycles are removed automatically.

See Also

ICoordinate Interface