博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AE+C# 向axPageLayoutControl1添加图例
阅读量:6118 次
发布时间:2019-06-21

本文共 1275 字,大约阅读时间需要 4 分钟。

原文 

 

//Get the GraphicsContainerIGraphicsContainer graphicsContainer = axPageLayoutControl1.GraphicsContainer;//Get the MapFrameIMapFrame mapFrame = (IMapFrame)graphicsContainer.FindFrame(axPageLayoutControl1.ActiveView.FocusMap);if (mapFrame == null) return;//Create a legendUID uID = new UIDClass();uID.Value = "esriCarto.Legend";//Create a MapSurroundFrame from the MapFrameIMapSurroundFrame mapSurroundFrame = mapFrame.CreateSurroundFrame(uID, null);if (mapSurroundFrame == null) return;if (mapSurroundFrame.MapSurround == null) return;//Set the name mapSurroundFrame.MapSurround.Name = "Legend";//Envelope for the legendIEnvelope envelope = new EnvelopeClass();envelope.PutCoords(1, 1, 3.4, 2.4);//Set the geometry of the MapSurroundFrame IElement element = (IElement)mapSurroundFrame;element.Geometry = envelope;//Add the legend to the PageLayoutaxPageLayoutControl1.AddElement(element, Type.Missing, Type.Missing, "Legend", 0);//Refresh the PageLayoutControlaxPageLayoutControl1.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewGraphics, null, null);

 

没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。
    本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/6017177.html
,如需转载请自行联系原作者
你可能感兴趣的文章
Linux的50个基本命令
查看>>
Objective-C中创建单例方法的步骤
查看>>
Codeforces 520B:Two Buttons(思维,好题)
查看>>
Jenkins持续集成环境部署
查看>>
emoji等表情符号存mysql的方法
查看>>
检查磁盘利用率并且定期发送告警邮件
查看>>
MWeb 1.4 新功能介绍二:静态博客功能增强
查看>>
linux文本模式和文本替换功能
查看>>
Windows SFTP 的安装
查看>>
摄像机与绕任意轴旋转
查看>>
rsync 服务器配置过程
查看>>
预处理、const与sizeof相关面试题
查看>>
爬虫豆瓣top250项目-开发文档
查看>>
Elasticsearch增删改查
查看>>
oracle归档日志增长过快处理方法
查看>>
有趣的数学书籍
查看>>
teamviewer 卸载干净
查看>>
多线程设计模式
查看>>
解读自定义UICollectionViewLayout--感动了我自己
查看>>
SqlServer作业指定目标服务器
查看>>