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


ITopologicalOperator.ClipDense Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (Geometry)  

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