ArcObjects Library Reference  (Geometry)    

IEnvelope.XMin Property

The position of the left side.

[Visual Basic 6.0]
Property XMin As Double
[Visual Basic .NET]
Public Property XMin As Double
[C#]
public double XMin {get; set;}
[Java]
public Double getXMin()
throws
    IOException,
    AutomationException
[Java]
public void setXMin(
Double XMin
)
throws
    IOException,
    AutomationException
[C++]
HRESULT get_XMin(
  double* XMin
);
[C++]
HRESULT put_XMin(
  double XMin

);

[C++]

Parameters

XMin [out, retval]

  XMin is a parameter of type double

XMin

  XMin is a parameter of type double

Product Availability

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

Description

XMin is the left side coordinate of the envelope.

Remarks

Setting Xmin to a value larger than Xmax will reverse Xmin and Xmax. Use PutCoords to avoid this behavior.

Envelope XMin Example

[C#]

The following C# code shows how to get the XMin property from an envelope:

xMin = env.XMin;

[Visual Basic 6.0]

The following Visual Basic code shows how to get the XMin property from an envelope:

 dXmin = m_pEnveLope.XMin

See Also

IEnvelope Interface | IEnvelope.XMax Property | IEnvelope.YMin Property

 


Feedback Send feedback on this page