Class PopoverHolderContainer
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents a container for IMudPopoverHolder, along with the associated PopoverHolderOperation.
public class PopoverHolderContainer
- Inheritance
-
PopoverHolderContainer
- Inherited Members
- Extension Methods
Constructors
PopoverHolderContainer(PopoverHolderOperation, IReadOnlyCollection<IMudPopoverHolder>)
Initializes a new instance of the PopoverHolderContainer class.
public PopoverHolderContainer(PopoverHolderOperation operation, IReadOnlyCollection<IMudPopoverHolder> holders)
Parameters
operation
PopoverHolderOperationThe operation associated with the container.
holders
IReadOnlyCollection<IMudPopoverHolder>The collection of IMudPopoverHolder.
Properties
Holders
Gets the collection of popover holders in the container.
public IReadOnlyCollection<IMudPopoverHolder> Holders { get; }
Property Value
Remarks
Currently, the collection always contains one item. However, in the future, the behavior might change, and a list of updated states could be sent if the decision is made to update by batches.
Operation
Gets the operation associated with the container.
public PopoverHolderOperation Operation { get; }