Table of Contents

Interface IPopover

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents a popover component.

public interface IPopover
Extension Methods

Properties

ChildContent

Child content of the component.

RenderFragment? ChildContent { get; set; }

Property Value

RenderFragment

Id

Gets the unique identifier of the popover.

Guid Id { get; }

Property Value

Guid

Open

If true, the popover is visible.

bool Open { get; set; }

Property Value

bool

PopoverClass

Gets the CSS class of the popover.

string PopoverClass { get; }

Property Value

string

PopoverStyles

Gets the inline styles of the popover.

string PopoverStyles { get; }

Property Value

string

Tag

Use Tag to attach any user data object to the component for your convenience.

object? Tag { get; set; }

Property Value

object

UserAttributes

UserAttributes carries all attributes you add to the component that don't match any of its parameters. They will be splatted onto the underlying HTML tag.

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

Property Value

Dictionary<string, object>