DockManagerPaneBase
Class
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public abstract class DockManagerPaneBase : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentDockManagerPaneBase
Derived Classes:
Implements:
Inherited Members
Constructors
C#
protected DockManagerPaneBase()
Methods
C#
public override void Dispose()
Overrides:
Implements:
C#
protected override void OnInitialized()
Overrides:
Properties
The size of the pane when it is part of a DockManagerSplitPane.
C#
[Parameter]
public string Size { get; set; }
Event that is fired when the size of the pane is changed. The new size is passed as an argument.
C#
[Parameter]
public EventCallback<string> SizeChanged { get; set; }
Determines whether the pane is visible or not.
C#
[Parameter]
public bool Visible { get; set; }
Event that is fired when the visibility of the pane is changed.
C#
[Parameter]
public EventCallback<bool> VisibleChanged { get; set; }