ArcObjects Library Reference (Animation)  

IAGKeyframe.PropertyValue Property

The value of a typed property.

[Visual Basic .NET]
Public Function get_PropertyValue ( _
    ByVal propIndex As Integer _
) As Object
[Visual Basic .NET]
Public Sub set_PropertyValue ( _
    ByVal propIndex As Integer, _
    ByVal pValue As Object _
)
[C#]
public object get_PropertyValue (
    int propIndex
);
[C#]
public void set_PropertyValue (
    int propIndex,
    object pValue
);
[C++]
HRESULT get_PropertyValue(
  long propIndex,
  VARIANT* pValue
);
[C++]
HRESULT put_PropertyValue(
  long propIndex,
  VARIANT pValue
);
[C++]

Parameters

propIndex [in]   propIndex is a parameter of type long pValue [out, retval]   pValue is a parameter of type VARIANT propIndex [in]   propIndex is a parameter of type long pValue [in]   pValue is a parameter of type VARIANT

Product Availability

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

Remarks

This property returns the animated object property value at a given index. You need to know the property names, indexes and types in an animation keyframe in order to access the property values. You can get such information through the help for the interface IAGAnimationType.

See Also

IAGKeyframe Interface