ArcObjects Component Help  (Core)    

IPropertySupport.Current Property

The object currently being used.

[Visual Basic 6.0]
Property Current(
    ByVal pUnk As Unknown _
) As Unknown
[Visual Basic .NET]
Public Function get_Current (
    ByVal pUnk As Object _
) As Object
[C#]
public object get_Current (
    object pUnk
);
[C++]
public: Object* get_Current (
    Object* pUnk
);

Remarks

Current will return you the current object of the specified type.  For instance, I may ask a CircleElement if it supports a Color object.  If it does, then I can use Current to get the Color object currently applied to my CircleElement.