Area Example

Land Auto

Area Example

Sub Example_Area()
    
    ' This example returns the Area for the first parcel in the collection.
    Dim parcel As AeccParcel
    Set parcel = AeccApplication.ActiveProject.parcels.Item(0)
    
    MsgBox "The Area for the first Parcel in the collection is: " _
        & Format(parcel.Area, "0.00"), vbInformation, "Area Example"
    
End Sub