This document is archived and information here might be outdated.  Recommended version.


ICadastralJob.ExtendedAttribute Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IC > ICadastralJob Interface > ICadastralJob.ExtendedAttribute Property
ArcGIS Developer Help

ICadastralJob.ExtendedAttribute Property

The value of an extended attribute.

[Visual Basic .NET]
Public Function get_ExtendedAttribute ( _
    ByVal fieldPosition As Integer _
) As Object
[Visual Basic .NET]
Public Sub set_ExtendedAttribute ( _
    ByVal fieldPosition As Integer, _
    ByVal Value As Object _
)
[C#]
public object get_ExtendedAttribute (
    int fieldPosition
);
[C#]
public void set_ExtendedAttribute (
    int fieldPosition,
    object Value
);
[C++]
HRESULT get_ExtendedAttribute(
  long fieldPosition,
  Variant* Value
);
[C++]
HRESULT put_ExtendedAttribute(
  long fieldPosition,
  VARIANT Value
);
[C++]
Parameters
fieldPosition [in]

fieldPosition is a parameter of type long Value [out, retval]
Value is a parameter of type VARIANT* fieldPosition [in]
fieldPosition is a parameter of type long Value [in]
Value is a parameter of type VARIANT

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The value of an extended attribute.

Use this property to set or retrieve the extended attribute value for the cadastral job for the field defined by the fieldPosition parameter.

Use the UpdateJob method to update the cadastral job with any changes to attribute values.

See Also

ICadastralJob Interface