C#arcengine编辑要素节点
时间: 2023-07-12 17:10:07 浏览: 148
ArcEngine要素编辑
5星 · 资源好评率100%
要在 ArcEngine 中编辑要素节点,你需要使用 `IEditSketch` 接口来获取编辑器的草图。然后,你可以使用 `IEditSketch.Geometry` 属性获取当前正在编辑的要素的几何图形。接下来,你可以使用 `IGeometryCollection` 接口来访问要素的节点,使用 `IPointCollection` 接口来访问节点的坐标,并更新它们。最后,你需要调用 `IEditSketch.RefreshSketch()` 方法来更新编辑器中的草图。
以下是一个简单的示例代码:
```csharp
IEditSketch editSketch = (IEditSketch)editor;
if (editSketch.Geometry != null)
{
IGeometryCollection geometryCollection = (IGeometryCollection)editSketch.Geometry;
for (int i = 0; i < geometryCollection.GeometryCount; i++)
{
IPointCollection pointCollection = (IPointCollection)geometryCollection.get_Geometry(i);
for (int j = 0; j < pointCollection.PointCount; j++)
{
// 更新节点坐标
IPoint point = pointCollection.get_Point(j);
point.X += 10;
point.Y += 10;
}
}
// 刷新草图
editSketch.RefreshSketch();
}
```
阅读全文