This document is archived and information here might be outdated.  Recommended version.


ITopologicalOperator.ClipDense Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IT > ITopologicalOperator Interface > ITopologicalOperator.ClipDense Method
ArcGIS Developer Help

ITopologicalOperator.ClipDense Method

Constructs the intersection of this geometry and the specified envelope; densifies lines in output contributed by the clipping envelope.

[Visual Basic .NET]
Public Sub ClipDense ( _
    ByVal clipperEnvelope As IEnvelope, _
    ByVal denseDistance As Double _
)
[C#]
public void ClipDense (
    IEnvelope clipperEnvelope,
    double denseDistance
);
[C++]
HRESULT ClipDense(
  IEnvelope* clipperEnvelope,
  double denseDistance
);
[C++]
Parameters
clipperEnvelope 

clipperEnvelope is a parameter of type IEnvelope* denseDistance
denseDistance is a parameter of type double

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

ITopologicalOperator methods must be applied on high-level geometries only. High-Level geometries are point, multipoint, polyline and polygon. To use this method with low-level geometries such as segments (Line, Circular Arc, Elliptic Arc, B�zier Curve), paths or rings, they must be wrapped into high-level geometries types.

This method does not support GeometryBags.

See Also

ITopologicalOperator Interface