[]
Adds a MinWidth constraint.
public SizeConstraint AppendMinWidth(float minWidth)
Public Function AppendMinWidth(minWidth As Single) As SizeConstraint
Type | Name | Description |
---|---|---|
float | minWidth | The proposed minimum width. |
Type | Description |
---|---|
SizeConstraint | New constraint just added. |
Adds a MinWidth constraint relative to anchorRect
.
public SizeConstraint AppendMinWidth(LayoutRect anchorRect, AnchorParam anchorParam, float delta = 0, float multiplier = 1)
Public Function AppendMinWidth(anchorRect As LayoutRect, anchorParam As AnchorParam, Optional delta As Single = 0, Optional multiplier As Single = 1) As SizeConstraint
Type | Name | Description |
---|---|---|
LayoutRect | anchorRect | The referenced LayoutRect or null to reference the owner LayoutView. |
AnchorParam | anchorParam | The source parameter of the |
float | delta | An increment to the value of the source (anchor) parameter. |
float | multiplier | A multiplier to the value of the source parameter; applied before adding the |
Type | Description |
---|---|
SizeConstraint | New constraint just added. |
Adds a MinWidth constraint relative to the distance between anchorPoint1
and anchorPoint2
.
public SizeConstraint AppendMinWidth(AnchorPoint anchorPoint1, AnchorPoint anchorPoint2, float delta = 0, float multiplier = 1)
Public Function AppendMinWidth(anchorPoint1 As AnchorPoint, anchorPoint2 As AnchorPoint, Optional delta As Single = 0, Optional multiplier As Single = 1) As SizeConstraint
Type | Name | Description |
---|---|---|
AnchorPoint | anchorPoint1 | The first referenced AnchorPoint. |
AnchorPoint | anchorPoint2 | The second referenced AnchorPoint. |
float | delta | An increment to the value of the source distance. |
float | multiplier | A multiplier to the value of the source distance; applied before adding the |
Type | Description |
---|---|
SizeConstraint | New constraint just added. |