IActiveView刷新方式

来源:互联网 发布:打war包没有java源码 编辑:程序博客网 时间:2024/06/11 13:36

IActiveView接口定义了Map对象的数据显示功能。使用该接口可以改变视图的范围,刷新视图。


IActiveView的PartialRefresh(esriViewGeography, pLayer, null)用于刷新指定图层:


IActiveView的PartialRefresh(esriViewGeography, null, null) 用于刷新刷新所有图层:


IActiveView的PartialRefresh(esriViewGeoSelection, null, null) 用于刷新所选择的对象:


IActiveView的PartialRefresh(esriViewGraphics, null, null) 用于刷新图形元素:


IActiveView的PartialRefresh(esriViewGraphics, pElement, null) 用于刷新指定图形元素


IActiveView的PartialRefresh(esriViewGraphics, null, null) 用于刷新所有图形元素


IActiveView的PartialRefresh(esriViewGraphicSelection, null, null)用于刷新所选择的图元。