ControlLocation Enum
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.
Specifies the possible locations for adding a control in a container.
public enum class ControlLocation
public enum ControlLocation
type ControlLocation =
Public Enum ControlLocation
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Before | 0 | Adds the control before the current selection or current control. |
After | 1 | Adds the control after the current selection or current control. |
First | 2 | Adds the control at the start of the document. |
Last | 3 | Adds the control at the end of the document. |
FirstChild | 4 | Adds the control as the first child of the selected control, if the selected control is a container control. |
LastChild | 5 | Adds the control as the last child of the selected control, if the selected control is a container control. |
Remarks
The ControlLocation enumeration is used by the WebFormsRootDesigner.AddControlToDocument method.