Method Remove
Remove(View?)
Removes a SubView added via Add(View?) or Add(params View[]?) from this View.
public virtual View? Remove(View? view)
Parameters
view
View
Returns
Remarks
Normally SubViews will be disposed when this View is disposed. Removing a SubView causes ownership of the SubView's lifecycle to be transferred to the caller; the caller must call Dispose().
Calls/Raises the OnSubViewRemoved(View)/SubViewRemoved event.
The OnSuperViewChanged(SuperViewChangedEventArgs)/SuperViewChanged event will be raised on the removed View.
- See Also