添加几何对象及设置相关的字段值。
命名空间:
SuperMap.Data程序集: SuperMap.Data (in SuperMap.Data)
版本: dll
语法
C# |
---|
public bool AddNew( Geometry geometry, Dictionary<string, Object> values ) |
参数
- geometry
- Type: SuperMap.Data..::.Geometry
需要添加的几何对象。
- values
- Type: System.Collections.Generic..::.Dictionary<(Of <(String, Object>)>)
需要设置的属性值,键为字段名称,值为对应字段的值。注:如果所自定的字段名称在记录集中不存在,对应的值就忽略。
返回值
添加成功返回true,否则返回false。备注
在使用该方法之后,需要调用 Recordset.Update 方法来提交修改,保存结果。
示例
请参见 Recordset.BatchEditor 类的示例。