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
Id
Gets the unique identifier of the popover.
Guid Id { get; }
Property Value
Open
If true, the popover is visible.
bool Open { get; set; }
Property Value
PopoverClass
Gets the CSS class of the popover.
string PopoverClass { get; }
Property Value
PopoverStyles
Gets the inline styles of the popover.
string PopoverStyles { get; }
Property Value
Tag
Use Tag to attach any user data object to the component for your convenience.
object? Tag { get; set; }
Property Value
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; }