ShellSection.OnChildRemoved Method

Definition

Overloads

OnChildRemoved(Element)
Obsolete.

Developers may override this method to customize behavior when a child Element is removed.

OnChildRemoved(Element, Int32)

OnChildRemoved(Element)

Caution

OnChildRemoved(Element) is obsolete as of version 4.8.0. Please use OnChildRemoved(Element, int) instead.

Developers may override this method to customize behavior when a child Element is removed.

[System.Obsolete("OnChildRemoved(Element) is obsolete as of version 4.8.0. Please use OnChildRemoved(Element, int) instead.")]
protected override void OnChildRemoved (Xamarin.Forms.Element child);
override this.OnChildRemoved : Xamarin.Forms.Element -> unit

Parameters

child
Element
Attributes

Remarks

Developers should call base.OnChildRemoved() at the beginning of their overriding method.

Applies to

OnChildRemoved(Element, Int32)

protected override void OnChildRemoved (Xamarin.Forms.Element child, int oldLogicalIndex);
override this.OnChildRemoved : Xamarin.Forms.Element * int -> unit

Parameters

child
Element
oldLogicalIndex
Int32

Applies to