码迷,mamicode.com
首页 > 其他好文 > 详细

ArcGIS Pro新建一个布局

时间:2020-03-14 01:10:44      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:contract   geometry   ppi   color   from   click   ext   linq   wait   

https://developers.arcgis.com/labs/pro/build-a-map-layout/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ArcGIS.Core.CIM;
using ArcGIS.Core.Data;
using ArcGIS.Core.Geometry;
using ArcGIS.Desktop.Catalog;
using ArcGIS.Desktop.Core;
using ArcGIS.Desktop.Editing;
using ArcGIS.Desktop.Extensions;
using ArcGIS.Desktop.Framework;
using ArcGIS.Desktop.Framework.Contracts;
using ArcGIS.Desktop.Framework.Dialogs;
using ArcGIS.Desktop.Framework.Threading.Tasks;
using ArcGIS.Desktop.Mapping;







using System.Windows.Input;


using System.Windows.Media;

using System.Windows.Media.Imaging;


using ArcGIS.Desktop.Core.Events;

using ArcGIS.Core.Events;

using ArcGIS.Desktop.Mapping.Events;


using ArcGIS.Desktop.Layouts;








namespace ylsetpro
{
    internal class btnAddData : Button
    {

        private async Task<Layout> createLayout()
        {
            // Create a layout which will be returned from the QueuedTask
            Layout newLayout = await QueuedTask.Run<Layout>(()=>
            {
                // Create a new CIM page
                CIMPage newPage = new CIMPage();

                // Add properties
                newPage.Width = 17;
                newPage.Height = 11;
                newPage.Units = LinearUnit.Inches;

                // Add rulers
                newPage.ShowRulers = true;
                newPage.SmallestRulerDivision = 0.5;

                // Apply the CIM page to a new layout and set name
                newLayout = LayoutFactory.Instance.CreateLayout(newPage);
                newLayout.SetName("Census Data");
                return newLayout;


            });
            return newLayout;

        }

        protected override void OnClick()
        {

            createLayout();




        }
    }
}

 

ArcGIS Pro新建一个布局

标签:contract   geometry   ppi   color   from   click   ext   linq   wait   

原文地址:https://www.cnblogs.com/gisoracle/p/12490114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!