Name | Type | Default | Description |
Disabled | bool | false | Determines whether the element is interactive or not. When enabled, the element can be interacted with by users (e.g., clicked, edited, or focused). When disabled, the element becomes non-interactive and typically appears visually subdued, preventing any user actions. |
Modifiers | IEnumerable<object> | N/A | Sets or retrieves the modifier properties applied to the Layout item, allowing you to customize its appearance and behavior (such as alignment, padding, margin, or transformations). Use this property to define or access configuration options that modify how the Layout item is displayed or interacts within its container. |
Min | int | 50 | Specifies the minimum allowable size for the item, ensuring that it cannot be resized smaller than this value. This property helps maintain layout integrity by preventing the item from shrinking below the defined threshold. |
Label | string | "Group" | Specifies the text or name displayed as the label for the item, which is typically used to identify or describe the item in user interfaces. |
Orientation | LayoutGroupOrientation | LayoutGroupOrientation.Vertical | Specifies the alignment or direction in which the group’s elements are arranged (e.g., horizontal, vertical, or custom orientation). This property controls how child components are positioned within the group. |
Size | object | N/A | Specifies the overall dimensions of the item, such as its width, height, or volume, which can be used for layout, display, or calculation purposes. |
Unfocusable | bool | false | If set to true, the element will be excluded from the tab order and cannot receive keyboard focus. This means users will not be able to focus on the element using the keyboard or other assistive technologies. |