Indicates if the receiver can apply the given object at any given time.
[Visual Basic .NET] Public Function Applies ( _ ByVal pUnk As Object _ ) As Boolean
[C#] public bool Applies ( object pUnk );
[C++]
HRESULT Applies(
LPUNKNOWN pUnk,
VARIANT_BOOL* Applies
);
[C++]Parameters
pUnk [in] pUnk is a parameter of type LPUNKNOWN Applies [out, retval] Applies is a parameter of type VARIANT_BOOL
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Remarks
Applies indicates whether the specified object can be applied to the current object. For instance, we might want to ask our CircleElement whether a Color object applies to it. If it does, then we can use the Apply method to update our CircleElement with the new Color object.
CanApply differs from Applies in that it is a check for the editability of the object at any given time. Applies indicates whether an object can be applied at all, while CanApply indicates whether an object can be applied at that particular moment.