Share via


NSLayoutDimension.ConstraintGreaterThanOrEqualTo Method

Definition

Overloads

Name Description
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:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual UIKit.NSLayoutConstraint ConstraintGreaterThanOrEqualTo(System.Runtime.InteropServices.NFloat constant);
[<Foundation.Export("constraintGreaterThanOrEqualToConstant:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
override this.ConstraintGreaterThanOrEqualTo : System.Runtime.InteropServices.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 view.

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:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual UIKit.NSLayoutConstraint ConstraintGreaterThanOrEqualTo(UIKit.NSLayoutDimension anchor, System.Runtime.InteropServices.NFloat multiplier);
[<Foundation.Export("constraintGreaterThanOrEqualToAnchor:multiplier:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
override this.ConstraintGreaterThanOrEqualTo : UIKit.NSLayoutDimension * System.Runtime.InteropServices.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 view.

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:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual UIKit.NSLayoutConstraint ConstraintGreaterThanOrEqualTo(UIKit.NSLayoutDimension anchor, System.Runtime.InteropServices.NFloat multiplier, System.Runtime.InteropServices.NFloat constant);
[<Foundation.Export("constraintGreaterThanOrEqualToAnchor:multiplier:constant:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
override this.ConstraintGreaterThanOrEqualTo : UIKit.NSLayoutDimension * System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.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 view.

Applies to