BoundsSpecified
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the bounds of the control to use when defining a control's size and position.
- C#
- VB.NET
public enum BoundsSpecified : Enum
Public Enum BoundsSpecified As [Enum]
Fields
| Name | Description |
|---|---|
| All | Both Location and Size property values are defined. |
| Height | The height of the control is defined. |
| Location | Both X and Y coordinates of the control are defined. |
| None | No bounds are specified. |
| Size | Both Width and Height property values of the control are defined. |
| Width | The width of the control is defined. |
| X | The left edge of the control is defined. |
| Y | The top edge of the control is defined. |
Used By
| Name | Description |
|---|---|
| Control.SetBounds | Sets the specified bounds of the control to the specified location and size. |
| LayoutEngine.InitLayout | Initializes the layout engine. |