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