This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IRepresentation Interface > IRepresentation.Value Property (ArcObjects .NET 10.4 SDK) |
The value of a representation property.
[Visual Basic .NET] Public Function get_Value ( _ ByVal attrs As IGraphicAttributes, _ ByVal idx As Integer _ ) As Object
[Visual Basic .NET] Public Sub set_Value ( _ ByVal attrs As IGraphicAttributes, _ ByVal idx As Integer, _ ByVal val As Object _ )
[C#] public object get_Value ( IGraphicAttributes attrs, int idx );
[C#] public void set_Value ( IGraphicAttributes attrs, int idx, object val );
[C++]
HRESULT get_Value(
IGraphicAttributes* attrs,
long idx,
VARIANT* val
);
[C++]
HRESULT put_Value(
IGraphicAttributes* attrs,
long idx,
VARIANT val
);
[C++]
Parameters attrs [in]
attrs is a parameter of type IGraphicAttributes idx [in] idx is a parameter of type long val [out, retval] val is a parameter of type VARIANT attrs [in]
attrs is a parameter of type IGraphicAttributes idx [in] idx is a parameter of type long val [in] val is a parameter of type VARIANT
Value property can be used to either retrieve or set the value of a feature representation's graphic attribute. Given a list of GraphicAttributes and an Index, a particular attribute belonging to the feature representation can be modified.
The list of attributes that can be modified are present in the following enumerations - esriGraphicAttribute, esriGeometricEffectAttributes and esriMarkerPlacementAttributes.