ArcObjects Library Reference  (Geometry)    

IEnvelope.ZMin Property

The minimum Z value in the area of the envelope.

[Visual Basic 6.0]
Property ZMin As Double
[Visual Basic .NET]
Public Property ZMin As Double
[C#]
public double ZMin {get; set;}
[Java]
public Double getZMin()
throws
    IOException,
    AutomationException
[Java]
public void setZMin(
Double ZMin
)
throws
    IOException,
    AutomationException
[C++]
HRESULT get_ZMin(
  double* ZMin
);
[C++]
HRESULT put_ZMin(
  double ZMin

);

[C++]

Parameters

ZMin [out, retval]

  ZMin is a parameter of type double

ZMin

  ZMin is a parameter of type double

Product Availability

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

Description

ZMin defines the lower elevation boundary of the envelope.

Remarks

 

Envelope ZMin Example

[C#]

The following C# code shows how to read and write the ZMin value:

IEnvelope env = new EnvelopeClass() as IEnvelope;

env.ZMin = 2;

double zMin;

zMin = env.ZMin;

 

[Visual Basic 6.0]

The following VB code shows how to read and write the ZMin value:

 dim dZmin as double
 dim pEnv as IEnvelope
 set pEnv = new Envelope
 pEnv.ZMin = 100.0
 dZmin = pEnv.Zmin

See Also

IEnvelope Interface