Engine中如何实现先居中显示要素再闪烁

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Engine中如何实现先居中显示要素再闪烁相关的知识,希望对你有一定的参考价值。

【解决办法】:
需要在要素居中显示之后、闪烁之前执行IScreenDisplay.UpdateWindow强制全刷,如:

//居中显示要素
IActiveView actView = axMapControl1.ActiveView; 
IEnvelope envelpe = actView.Extent; 
envelpe.CenterAt(pt); 
actView.Extent = envelpe; 
actView.Refresh(); 

//加入强制刷新,保证刷完后再执行其他语句 
actView.ScreenDisplay.UpdateWindow(); 

//调用闪烁代码
IRgbColor rgbColor = new RgbColorClass(); 
rgbColor.RGB = 255; 
FlashGeometry(pt, rgbColor, actView.ScreenDisplay, 500); 

以上是关于Engine中如何实现先居中显示要素再闪烁的主要内容,如果未能解决你的问题,请参考以下文章

engine如何实现按字段属性选择要素

覆盖javascript以消除闪烁

ArcGIS Engine中如何往已有要素类中插入数据

请问你是如何具体实现的 arcgis engine 二次开发怎样获取某线要素的结点及各结点的坐标值?

调用 replace() 方法后片段闪烁/闪烁

片段如何设置属性“windowSoftInputMode”