Interface IChipGroupContainer
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
Bridge surfaced by BOBChipGroup<TValue> to nested BOBChip
children. Decouples the chip from the group's value generic so a single
BOBChip definition can participate in any group regardless of payload type.
public interface IChipGroupContainer
Properties
IsGroupDisabled
When true, the group is disabled and chip clicks should no-op.
bool IsGroupDisabled { get; }
Property Value
- bool
Mode
Selection cardinality (single vs multiple) enforced by the group.
ChipGroupSelectionMode Mode { get; }
Property Value
Methods
IsValueSelected(object?)
Returns whether value is currently in the group's selection.
bool IsValueSelected(object? value)
Parameters
valueobject
Returns
- bool
ToggleAsync(object?)
Toggles value in/out of the selection, honouring Mode.
Task ToggleAsync(object? value)
Parameters
valueobject
Returns
- Task