| Package | com.esri.baserver | 
| Class | public class EditFeature | 
| Inheritance | EditFeature    Object | 
| Implements | IJsonObject | 
An instance of this class provides new values for a feature to be edited.
	 If feature geometry is modified, the geometry property should be specified. If
	 some feature attributes are modified, the attributes property should contain
	 new values for modified attributes.
See also
| Property | Defined By | ||
|---|---|---|---|
| attributes : Object 
	     New values for feature attributes.  | EditFeature | ||
| geometry : Geometry 
	     Feature geometry to be edited.  | EditFeature | ||
| oid : int 
	     Object ID of feature to be edited.  | EditFeature | ||
| Method | Defined By | ||
|---|---|---|---|
EditFeature(oid:int, geometry:Geometry = null, attributes:Object = null) 
		 Creates a new instance of the EditFeature class.  | EditFeature | ||
| attributes | property | 
attributes:ObjectNew values for feature attributes.
    public function get attributes():Object    public function set attributes(value:Object):void| geometry | property | 
geometry:GeometryFeature geometry to be edited.
    public function get geometry():Geometry    public function set geometry(value:Geometry):void| oid | property | 
oid:intObject ID of feature to be edited.
    public function get oid():int    public function set oid(value:int):void| EditFeature | () | Constructor | 
public function EditFeature(oid:int, geometry:Geometry = null, attributes:Object = null)Creates a new instance of the EditFeature class.
Parametersoid:int — Object ID of feature to be edited.
		  | |
geometry:Geometry (default = null) — Feature geometry to be edited.
		  | |
attributes:Object (default = null) — New values for feature attributes.
		  |