摘要:
补充第五章最后一节知识:5.8 IFeatureClass.Search(IQueryFilter,bool Recycling)参数说明 解释第二个参数bool Recycling 的意义: IFeatureClass.Search(IQueryFilter,bool Recycling)方法,返回游标。 第二个参数设置为true时,当用pFeatureCursor遍历 pFeatureClass时,每次获取下一个后,前一个 记录的图形值在内存中所占的地址就会被销毁回收; 反之,不会回收,依然存在 在内存中。第六章 空间分析 空间分析功能是GIS的主要功能之一,本章将为读者介绍一些... 阅读全文
摘要:
5.6 属性查询实例 查询人口大于50000000的城市,并把查询结果创建为一个新的图层。 程序执行效果如下:图1:基础MXD文件(注意属性表)图2:查询功能实现图3:将选择集创建为新图层代码如下: 1 private void button2_Click(object sender, EventArgs e,AxMapControl axMapControl1) 2 { 3 IFeatureLayer pFeatureLayer = axMapControl1.get_Layer(0) as IFeatureLayer; 4 ... 阅读全文