MapWinGIS:Shapefile Extents
From MapWindow GIS
Extents
Gets the extents of the shapefile.
See also Extents
VB.NET Usage
ReadOnly Property Extents() As MapWinGIS.Extents
Parameters
|
ReturnValue | The extents of the shapefile. |
Sample Code
Private Sub ShapefileExtents()
Dim sf As New MapWinGIS.Shapefile()
Dim extents As New MapWinGIS.Extents()
'Get the extents of the shapefile
extents = sf.Extents
End Sub
VB 6 Usage
ReadOnly Property Extents() As Extents
Parameters
|
ReturnValue | The extents of the shapefile. |
Sample Code
Private Sub ShapefileExtents()
Dim sf As New MapWinGIS.Shapefile
Dim extents As New MapWinGIS.extents
'Get the extents of the shapefile
Set extents = sf.extents
End Sub
















