-
Notifications
You must be signed in to change notification settings - Fork 1
LabelTextBox Class
Mauricio Jorquera edited this page Nov 14, 2023
·
4 revisions
Namespace: SCADtools.Revit.UI
This class is used to add an element that combines a TextBox with a Label to the options bar.
The following example creates a LabelTextBox.
C#
LabelTextBox labelTextBox = new LabelTextBox()
{
Label = "Lock",
MarginLeft = 10
};| Name | Description |
|---|---|
| LabelTextBox() | Initializes a new instance of the LabelTextBox class. |
| Name | Description |
|---|---|
| TextBoxControl | Represents a native CheckBox class. |
| ControlToolTip | This class implements the standard tooltip. |
| Label | The user-visible text on the Label. |
| MarginLeft | Gets or sets the separation of the Control with some control that is to its left. |