Class
DockManagerPaneBase

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public abstract class DockManagerPaneBase : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentDockManagerPaneBase

Derived Classes: DockManagerContentPaneDockManagerSplitPaneDockManagerTabGroupPane

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.BuildRenderTree(RenderTreeBuilder)ComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.DispatchExceptionAsync(Exception)ComponentBase.SetParametersAsync(ParameterView)

Constructors

DockManagerPaneBase()

Declaration

cs-api-definition
protected DockManagerPaneBase()

Properties

Dockable

Specifies whether the pane allows other panes to be docked to or over it. The default value is true. If set to false, the pane will not render a navigator element that allows docking.

Declaration

cs-api-definition
[Parameter]
public bool Dockable { get; set; }

Property Value

bool

Id

The unique identifier of the pane.

Declaration

cs-api-definition
[Parameter]
public string Id { get; set; }

Property Value

string

Size

The size of the pane when it is part of a DockManagerSplitPane.

Declaration

cs-api-definition
[Parameter]
public string Size { get; set; }

Property Value

string

SizeChanged

Event that is fired when the size of the pane is changed. The new size is passed as an argument.

Declaration

cs-api-definition
[Parameter]
public EventCallback<string> SizeChanged { get; set; }

Property Value

EventCallback<string>

Visible

Determines whether the pane is visible or not.

Declaration

cs-api-definition
[Parameter]
public bool Visible { get; set; }

Property Value

bool

VisibleChanged

Event that is fired when the visibility of the pane is changed.

Declaration

cs-api-definition
[Parameter]
public EventCallback<bool> VisibleChanged { get; set; }

Property Value

EventCallback<bool>

Methods

Dispose()

Declaration

cs-api-definition
public override void Dispose()

Overrides BaseComponent.Dispose()

Implements IDisposable.Dispose()

OnInitialized()

Declaration

cs-api-definition
protected override void OnInitialized()

Overrides ComponentBase.OnInitialized()