arcgis engine 中如何判读选中的元素是指北针、图例或比例尺等类型元素?
发布网友
发布时间:2022-05-09 13:00
我来回答
共3个回答
热心网友
时间:2024-01-30 09:00
可以这样写
//先判断是否为mapSurroundFrame
if(pelement is IMapSurroundFrame)
{
//然后将pelement 转为IMapSurroundFrame
iMapsurroundFrame psurround=pelement as iMapsurroundFrame;
//然后判断是否为图例、指北针、比例尺等等
if (psurround.MapSourround is ILengend)
{}
else if(psurround.MapSourround is INorthArrow)
}
热心网友
时间:2024-01-30 09:00
送你几个参考资料demo...
热心网友
时间:2024-01-30 09:01
IElement 根本不包括is后面的接口 ,写代码的时候要多看ArcGIS Engine帮助。