UIView.SendSubviewToBack(UIView) Method

Definition

Moves a UIView so that it appears behind all its siblings.

[Foundation.Export("sendSubviewToBack:")]
public virtual void SendSubviewToBack (UIKit.UIView view);
abstract member SendSubviewToBack : UIKit.UIView -> unit
override this.SendSubviewToBack : UIKit.UIView -> unit

Parameters

view
UIView

The UIView to be sent to the back.

Attributes

Remarks

This method moves the view so that it appears behind other UIViews in the Subviews array. Display z-order is determined by the position of the UIView in the Subviews array and this method moves view to the first location in the Subviews array.

Applies to

See also

  • <xref:UIKit.UIView.BringSubviewToFront>
  • <xref:UIKit.UIView.ExchangeSubview>