MapWinGIS:Extents GetMeasureBounds
From MapWindow GIS
GetMeasureBounds
Gets the minimum and maximum measure bounds for the extents object. Note: Measure bounds only apply to shapefiles containing measure data.
VB.NET Usage
Sub GetMeasureBounds(ByRef mMin As Double, ByRef mMax As Double)
Parameters
|
mMin | Reference paramenter. Returns the minimum measure bound for the extents object. |
| mMax | Reference paramenter. Returns the minimum measure bound for the extents object. |
Sample Code
Private Sub ExtentsMeasureBounds()
Dim extents As New MapWinGIS.Extents()
Dim mMin As Double, mMax As Double
'Get the minimum and maximum measure bounds for the extents object
extents.GetMeasureBounds(mMin, mMax)
End Sub
VB 6 Usage
Sub GetMeasureBounds(ByRef mMin As Double, ByRef mMax As Double)
Parameters
|
mMin | Reference paramenter. Returns the minimum measure bound for the extents object. |
| mMax | Reference paramenter. Returns the minimum measure bound for the extents object. |
Sample Code
Private Sub ExtentsMeasureBounds()
Dim extents As New MapWinGIS.extents
Dim mMin As Double, mMax As Double
'Get the minimum and maximum measure bounds for the extents object
extents.GetMeasureBounds mMin, mMax
End Sub
















