UIView.SendSubviewToBack(UIView) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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>