ArcObjects Library Reference  (Geometry)    

IEnvelope.YMin Property

The position of the bottom.

[Visual Basic 6.0]
Property YMin As Double
[Visual Basic .NET]
Public Property YMin As Double
[C#]
public double YMin {get; set;}
[Java]
public Double getYMin()
throws
    IOException,
    AutomationException
[Java]
public void setYMin(
Double YMin
)
throws
    IOException,
    AutomationException
[C++]
HRESULT get_YMin(
  double* YMin
);
[C++]
HRESULT put_YMin(
  double YMin

);

[C++]

Parameters

YMin [out, retval]

  YMin is a parameter of type double

YMin

  YMin is a parameter of type double

Product Availability

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

Description

YMin is the bottom coordinate of the envelope.

Remarks

Setting Ymin to a value larger than Ymax will reverse Ymin and Ymax. Use PutCoords to avoid this behavior.

Envelope YMin Example

[C#]

The following C# code shows how to get the YMin property of an envelope:

yMin = env.YMin;

[Visual Basic 6.0]

The following Visual Basic code shows how to get the YMin property of an envelope:

dYMin = m_pEnveLope.YMin 

See Also

IEnvelope Interface | IEnvelope.XMin Property | IEnvelope.XMax Property

 


Feedback Send feedback on this page