This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IE > IEnvelope Interface > IEnvelope.ZMin Property (ArcObjects .NET 10.5 SDK) |
The minimum Z value in the area of the envelope.
[Visual Basic .NET] Public Property ZMin As Double
[C#] public double ZMin {get; set;}
[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
ZMin defines the lower elevation boundary of the envelope.
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;