ESRI.ArcGIS.Mobile.Client
GetEditableAttributes(Feature,FeatureDataRow) Method
See Also  Send Feedback
ESRI.ArcGIS.Mobile.Client Namespace > Feature Class > GetEditableAttributes Method : GetEditableAttributes(Feature,FeatureDataRow) Method

feature
The feature that the feature data row is associated with.
row
The feature data row to get the feature attributes from.
Returns a collection of feature attributes for the feature being edited. Note can only be called while the feature is being edited (i.e., IsEditing is true).

Syntax

Visual Basic (Declaration) 
Protected Overloads Shared Function GetEditableAttributes( _
   ByVal feature As Feature, _
   ByVal row As FeatureDataRow _
) As Collection(Of FeatureAttribute)
C# 
protected static Collection<FeatureAttribute> GetEditableAttributes( 
   Feature feature,
   FeatureDataRow row
)

Parameters

feature
The feature that the feature data row is associated with.
row
The feature data row to get the feature attributes from.

Return Value

Collection of feature attributes.

Exceptions

ExceptionDescription
InvalidOperationExceptionFeature is not being edited.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also