MapWinGIS:Shape Extents
From MapWindow GIS
Extents
Gets the extents of the shape.
VB.NET Usage
ReadOnly Property Extents() As MapWinGIS.Extents
Parameters
|
ReturnValue | The extents of the shape. |
Sample Code
Private Sub ShapeExtents()
Dim shape As New MapWinGIS.Shape()
Dim extents As New MapWinGIS.Extents()
'Get the extents of the shape
extents = shape.Extents
End Sub
VB 6 Usage
ReadOnly Property Extents() As Extents
Parameters
|
ReturnValue | The extents of the shape. |
Sample Code
Private Sub ShapeExtents()
Dim shape As New MapWinGIS.shape
Dim extents As New MapWinGIS.extents
'Get the extents of the shape
Set extents = shape.extents
End Sub
















