| RepresentationRpObjectDeleted Event |
Event triggered when an RObject has been deleted.
The event is triggered after the call to DeleteRpObject(RpObject)
so the object is not supposed to be accessible at this moment.
You cannot access the object by accessing a property or calling a
method. It can just be used, for instance, to update a container that
was containing it.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public event EventHandler<RpObjectEventArgs> RpObjectDeleted
Public Event RpObjectDeleted As EventHandler(Of RpObjectEventArgs)
public:
event EventHandler<RpObjectEventArgs^>^ RpObjectDeleted {
void add (EventHandler<RpObjectEventArgs^>^ value);
void remove (EventHandler<RpObjectEventArgs^>^ value);
}
Value
Type:
SystemEventHandlerRpObjectEventArgsSee Also