VectorLayer.Add

Add(Feature)

向图层添加新功能(如果支持)VectorLayerDriver.

public void Add(Feature feature)
范围类型描述
featureFeature要添加的功能。

例外

例外(健康)状况
InvalidOperationException如果层是只读的,则抛出。

也可以看看


Add(Feature, IFeatureStyle)

向图层添加具有指定样式的新功能(如果支持)VectorLayerDriver.

public virtual void Add(Feature feature, IFeatureStyle style)
范围类型描述
featureFeature要添加的功能。
styleIFeatureStyle特征样式。使用null表示缺少样式。

例外

例外(健康)状况
InvalidOperationException如果图层不支持样式或图层是只读的,则抛出。
InvalidOperationException如果可编辑图层不支持样式则抛出。
ArgumentException如果样式与驱动程序类型不匹配则抛出。

也可以看看