Merge a layer selection Object C # arcengine

Source: Internet
Author: User

Arcengine implements merge functions

Private igeometry getgeo (ifeaturelayer pflyr)
{
Ienumgeometry pgos = new enumfeaturegeometryclass ();
Ienumgeometrybind pgeosbind = pgos as ienumgeometrybind;
Ifeatureselection pflyrselection = pflyr as ifeatureselection;
Pflyrselection. selectfeatures (null, esriselectionresultenum. esriselectionresultnew, false); pgeosbind. bindgeometrysource (null, pflyrselection. selectionset );
Pgos. Reset ();
Ipolympus Gon spoly = new polygonclass ();
Itopologicaloperator ptopo = spoly as itopologicaloperator;
Ptopo. constructunion (pgos );
Ptopo. Simplify ();
Spoly = ptopo as ipolympus gon;
Pflyrselection. Clear ();
Return spoly;
}

Execute the code snippet above to merge all objects on the layer. Pay attention to the line of code in the red part. If this line of code is not written, the number of images in the pgos is 0, and the final spoly is empty.

 

From: http://program.ntwtsp.com/aspnet/18234.htm

Related Article

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.