Table of Contents

Interface IPopover

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents a popover component.

public interface IPopover
Extension Methods

Properties

ChildContent

The content within this popover.

RenderFragment? ChildContent { get; set; }

Property Value

RenderFragment

Id

The unique identifier of the popover.

Guid Id { get; }

Property Value

Guid

Open

Shows the popover.

bool Open { get; set; }

Property Value

bool

PopoverClass

The CSS class of the popover.

string PopoverClass { get; }

Property Value

string

PopoverStyles

The inline styles of the popover.

string PopoverStyles { get; }

Property Value

string

Tag

Any user data to link to this popover.

object? Tag { get; set; }

Property Value

object

UserAttributes

Any additional attributes to add to this component.

Dictionary<string, object?> UserAttributes { get; set; }

Property Value

Dictionary<string, object>

Remarks

Use this for any attributes which don't have a parameter. They will be "splatted" onto the underlying HTML tag.