NSLayoutDimension.ConstraintGreaterThanOrEqualTo Method

Definition

Overloads

ConstraintGreaterThanOrEqualTo(nfloat)

Creates a NSLayoutConstraint whose value is at least equal to that of the constant.

ConstraintGreaterThanOrEqualTo(NSLayoutDimension, nfloat)

Creates a NSLayoutConstraint whose value is at least equal to that of the constraint of the anchor multiplied by multiplier.

ConstraintGreaterThanOrEqualTo(NSLayoutDimension, nfloat, nfloat)

Creates a NSLayoutConstraint whose value is at least equal to that of the constraint of the anchor multiplied by multiplier and adding constant logical pixels.

ConstraintGreaterThanOrEqualTo(nfloat)

Creates a NSLayoutConstraint whose value is at least equal to that of the constant.

[Foundation.Export("constraintGreaterThanOrEqualToConstant:")]
public virtual UIKit.NSLayoutConstraint ConstraintGreaterThanOrEqualTo (nfloat constant);
override this.ConstraintGreaterThanOrEqualTo : nfloat -> UIKit.NSLayoutConstraint

Parameters

constant
nfloat

The number of logical pixels to add.

Returns

A new NSLayoutConstraint.

Attributes

Remarks

As with other methods of this class, this method returns a new NSLayoutConstraint but does not add and activate it to the current UIView.

Applies to

ConstraintGreaterThanOrEqualTo(NSLayoutDimension, nfloat)

Creates a NSLayoutConstraint whose value is at least equal to that of the constraint of the anchor multiplied by multiplier.

[Foundation.Export("constraintGreaterThanOrEqualToAnchor:multiplier:")]
public virtual UIKit.NSLayoutConstraint ConstraintGreaterThanOrEqualTo (UIKit.NSLayoutDimension anchor, nfloat multiplier);
override this.ConstraintGreaterThanOrEqualTo : UIKit.NSLayoutDimension * nfloat -> UIKit.NSLayoutConstraint

Parameters

anchor
NSLayoutDimension

The NSLayoutAnchor<AnchorType> whose constraint value should be copied.

multiplier
nfloat

Returns

A new NSLayoutConstraint.

Attributes

Remarks

As with other methods of this class, this method returns a new NSLayoutConstraint but does not add and activate it to the current UIView.

Applies to

ConstraintGreaterThanOrEqualTo(NSLayoutDimension, nfloat, nfloat)

Creates a NSLayoutConstraint whose value is at least equal to that of the constraint of the anchor multiplied by multiplier and adding constant logical pixels.

[Foundation.Export("constraintGreaterThanOrEqualToAnchor:multiplier:constant:")]
public virtual UIKit.NSLayoutConstraint ConstraintGreaterThanOrEqualTo (UIKit.NSLayoutDimension anchor, nfloat multiplier, nfloat constant);
override this.ConstraintGreaterThanOrEqualTo : UIKit.NSLayoutDimension * nfloat * nfloat -> UIKit.NSLayoutConstraint

Parameters

anchor
NSLayoutDimension

The NSLayoutAnchor<AnchorType> whose constraint value should be copied.

multiplier
nfloat
constant
nfloat

The number of logical pixels to add.

Returns

A new NSLayoutConstraint.

Attributes

Remarks

As with other methods of this class, this method returns a new NSLayoutConstraint but does not add and activate it to the current UIView.

Applies to