public void removeSiteable(ISiteable siteable);
Notifies the site that the ISiteable object is detaching itself from the site. This notification provides an opportunity for the site to perform any cleanup, such as removing the ISiteable object from its list of objects.
An ISiteable object calls this method whenever its site changes (because the setSite method has been called) or when the ISiteable object is no longer bound to the site.
Return Value:
No return value.
Parameter | Description |
siteable
| The object that is detaching from the site.
|