Constructs the intersection of this geometry and the specified envelope; densifies lines in output contributed by the clipping envelope.
[Visual Basic 6.0] Sub ClipDense(
ByVal clipperEnvelope As IEnvelope, _
ByVal denseDistance As Double _
)
[Visual Basic .NET] Public Sub ClipDense ( _ ByVal clipperEnvelope As IEnvelope, _ ByVal denseDistance As Double _ )
[C#] public void ClipDense ( IEnvelope clipperEnvelope, double denseDistance );
[Java] public void clipDense ( IEnvelope clipperEnvelope, double denseDistance ) throws IOException, AutomationException
[C++] HRESULT ClipDense( IEnvelope* clipperEnvelope, double denseDistance );
Parameters
clipperEnvelope
clipperEnvelope is a parameter of type IEnvelope
denseDistance
denseDistance is a parameter of type double
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.