开发者社区> 橘子红了呐> 正文

Envelope

简介:
+关注继续查看

 

IEnvelope Interface

Provides access to methods and properties of envelopes. Note: the IEnvelope interface has been superseded byIEnvelope2. Please consider using the more recent version.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Envelopes are the rectangular window that contain a specific element.  All Geometry objects have an envelope defined by the XMinXMaxYMin, and YMax of the object.  Envelopes can also serve as the viewing area for a particular view screen or data frame.

Members

Description

 

 

CenterAt

Moves this envelope so it is centered at p.

 

DefineFromPoints

Defines the envelope to cover all the points.

 

Depth

The depth of the envelope.

 

Dimension

The topological dimension of this geometry.

 

Envelope

Creates a copy of this geometry's envelope and returns it.

 

Expand

Moves the X and Y coordinates of the sides toward or away from each other.

 

ExpandM

Moves the measure of the sides toward or away from each other.

 

ExpandZ

Moves the Z attribute of the sides toward or away from each other.

 

GeometryType

The type of this geometry.

 

GeoNormalize

Shifts longitudes, if need be, into a continuous range of 360 degrees.

 

GeoNormalizeFromLongitude

Normalizes longitudes into a continuous range containing the longitude. This method is obsolete.

 

Height

The height of the envelope.

 

Intersect

Adjusts to include only the area also included by inEnvelope.

 

IsEmpty

Indicates whether this geometry contains any points.

 

LowerLeft

The lower left corner.

 

LowerRight

The lower right corner.

 

MMax

The maximum measure value in the area of the envelope.

 

MMin

The minimum measure value in the area of the envelope.

 

Offset

Moves the sides x units horizontally and y units vertically.

 

OffsetM

Moves the sides m units.

 

OffsetZ

Moves the sides z units.

 

Project

Projects this geometry into a new spatial reference.

 

PutCoords

Constructs an envelope from the coordinate values of lower, left and upper, right corners.

 

QueryCoords

Returns the coordinates of lower, left and upper, right corners.

 

QueryEnvelope

Copies this geometry's envelope properties into the specified envelope.

 

SetEmpty

Removes all points from this geometry.

 

SnapToSpatialReference

Moves points of this geometry so that they can be represented in the precision of the geometry's associated spatial reference system.

 

SpatialReference

The spatial reference associated with this geometry.

 

Union

Adjusts to overlap inEnvelope.

 

UpperLeft

The upper left corner.

 

UpperRight

The upper right corner.

 

Width

The width of the envelope.

 

XMax

The position of the right side.

 

XMin

The position of the left side.

 

YMax

The position of the top.

 

YMin

The position of the bottom.

 

ZMax

The maximum Z value in the area of the envelope.

 

ZMin

The minimum Z value in the area of the envelope.

Inherited Interfaces

Interfaces

Description

IGeometry

Provides access to members that describe properties and behavior of all geometric objects.

CoClasses that implement IEnvelope

CoClasses and Classes

Description

Envelope

A rectangle with sides parallel to a coordinate system defining the extent of another geometry; optionally has min and max measure, height and ID attributes.

[C#]

        //The following C# code shows how to create an envelope from coordinates:
        IEnvelope env = new EnvelopeClass() as IEnvelope;

        env.PutCoords(-10, -5, 10, 5);

 

没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。


   本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/6120193.html,如需转载请自行联系原作者

版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。

相关文章
Typora上传Gitee图床成功,却无法显示图片?(image load failed)
博主构建好Typora-Picgo-Gitee图床之后,发现:虽然图片确实上传到Gitee仓库了,而且也能看到。但是Typora本地却看不到图片,提示(image load failed)
671 0
Typora最新版破解, 2022年11.7破解成功
Typora最新版破解, 2022年11.7破解成功, 支持Linux, Windows, Mac三端破解, 你值得拥有哦
2893 0
typora下载和破解(仅供学习)
Typora 一款 Markdown 编辑器和阅读器 风格极简 / 多种主题 / 支持 macOS,Windows 及 Linux 实时预览 / 图片与文字 / 代码块 / 数学公式 / 图表 目录大纲 / 文件管理 / 导入与导出 ……
57877 0
限定项目的 Node.js 版本
限定项目的 Node.js 版本限定项目运行所需的 Node.js 版本可保证项目在一个稳定可预期的环境中运行,减少不必要的故障。甚至有些依赖库只能工作于某些版本下。同时,不加以限制的话,在多人合作的项目中恐怕会引起环境不一致带来的兼容性问题,部署上也会存在相同的问题。
1779 0
Rust 笔记:Rust 语言中使用 vector(向量)
本文介绍 Rust 语言中的向量,包括向量与数组的区别,向量的相关API的用法等等。
9198 0
经常忘记网址?将Vue项目一键打包为桌面客户端 十分钟让你解决烦恼
本文讲解了如何将一个Vue项目打包为桌面客户端,实现像Excel一样双击运行,适用于管理较多项目且经常忘记网址的场景。本文还讲解了 Vue 项目从下载依赖、打包和Nginx部署的全过程,可以给开发者参考学习。
11020 0
Spring Cloud Kubernetes使用全解(一)—官方原版
Spring Cloud Kubernetes使用全解(一)—官方原版
10722 0
[万字长文]知识图谱之本体结构与语义解耦——知识建模看它就够了!
过去两年多的时间,针对蚂蚁域内业务场景和知识体系多样、复杂,知识建模成本高导致图谱项目启动难的问题,我们提出了一种结构与语义解耦的知识建模及schema设计方法,并在商家图谱、事理图谱、保险图谱等多个项目中进行实践。相关简化schema设计及帮助对知识的属性语义化、标准化的能力已经集成到蜘蛛知识平台。本文总结了我们过去所工作,沉淀为体系化的方法论,并针对不同复杂程度的知识建模问题,进行实操指南。
6706 0
数据结构 跳跃表 C语言实现
数据结构 跳跃表 C语言实现
10652 0
c语言数据结构---链表
链表:顾名思义,就像一条铁链一样,把每一个铁链的链节点连接起来。 链表的基本结构如下: 链表每个节点的创建 首先,一条铁链,有多个节点,每两个节点之间会连接起来。 那么这些节点是如何创建的呢? —结构体—
10779 0
MyBatis-Plus | 快速入门(下)
MyBatis-Plus | 快速入门(下)
10779 0
【数据结构】 常见的八大排序算法(下)
【数据结构】 常见的八大排序算法(下)
10891 0
深度学习应用篇-计算机视觉-图像分类[3]:ResNeXt、Res2Net、Swin Transformer、Vision Transformer等模型结构、实现、模型特点详细介绍
深度学习应用篇-计算机视觉-图像分类[3]:ResNeXt、Res2Net、Swin Transformer、Vision Transformer等模型结构、实现、模型特点详细介绍
10009 0
Java 数组
Java 数组
10823 0
+关注
橘子红了呐
文章
问答
视频
相关电子书
更多
低代码开发师(初级)实战教程
立即下载
阿里巴巴DevOps 最佳实践手册
立即下载
冬季实战营第三期:MySQL数据库进阶实战
立即下载