How to determine whether a polygon is a ring or an eye

Source: Internet
Author: User
Private sub uibuttoncontrol2_click ()

Dim app as iapplication
Set APP = Application

Dim pmxdocument as imxdocument
Set pmxdocument = application. Document

Dim pmap as IMAP
Set pmap = pmxdocument. focusmap

Dim pfeaturelayer as ifeaturelayer
Set pfeaturelayer = pmap. layer (0)

Dim pfeaturecursor as ifeaturecursor
Set pfeaturecursor = pfeaturelayer. featureclass. Search (nothing, false)

Dim pfeature as ifeature
Set pfeature = pfeaturecursor. nextfeature

Dim ppolygon as ipolympus gon
Dim geocollection as igeometrycollection
Dim Pring as iring
Dim inringcount as integer

While not pfeature is nothing
Set ppolygon = pfeature. Shape
Set geocollection = ppolygon

If geocollection. geometrycount> 1 then
Inringcount = inringcount + 1
Pmap. selectfeature pfeaturelayer, pfeature
End if

'If ppolygon. exteriorringcount> 1 then
'Pmap. selectfeature pfeaturelayer, pfeature
'End if
 
'If ppolygon. exteriorringcount = 1 then
'Set ppointcollection = ppolygon
'Set Pring = ppointcollection
'Initingcount = ppolygon. interiorringcount (Pring)
'If inringcount> 0 then
'Pmap. selectfeature pfeaturelayer, pfeature
'End if
'End if

Set pfeature = pfeaturecursor. nextfeature
Wend

Dim pactiveview as iactiveview
Set pactiveview = pmap
Pactiveview. Refresh
Msgbox "Total" & inringcount & "irregular polygon"

End sub

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.