enum GUIStyleSheetSelectorType
Type of selector in a style sheet.
Selectors determine to which GUI elements does a style apply to.
Values
| Name | Value | Description |
|---|---|---|
Element |
0 |
Selector applies to entire type of GUI elements (e.g. button, input box, etc.), |
Class |
1 |
Selector applies to a set of GUI elements given a particular class name. |
Id |
2 |
Selector applies only to a particular GUI element with the specific ID. |
PseudoClass |
3 |
Similar to class, except the GUI element class is not set explicitly by the user, but is instead set by the runtime. |
PseudoElement |
4 |
Similar to element, except the GUI element is not created explicitly by the user, but is instead created by the runtime. |