Table of Contents

Class MBTooltip

Namespace
Material.Blazor
Assembly
Material.Blazor.dll
public class MBTooltip : ComponentFoundation, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance
MBTooltip
Implements
Inherited Members

Constructors

MBTooltip()

public MBTooltip()

Properties

Content

The tooltip's content.

[Parameter]
public RenderFragment Content { get; set; }

Property Value

RenderFragment

Target

The render fragment requiring the tooltip.

[Parameter]
public RenderFragment Target { get; set; }

Property Value

RenderFragment

Methods

BuildRenderTree(RenderTreeBuilder)

Renders the component to the supplied RenderTreeBuilder.

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

Dispose()

public void Dispose()

Dispose(bool)

protected virtual void Dispose(bool disposing)

Parameters

disposing bool

OnInitializedAsync()

Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree.

Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.

protected override Task OnInitializedAsync()

Returns

Task

A Task representing any asynchronous operation.