Class PanelModel
Defines the PanelModel class for Panel.
Inheritance
Namespace: Syncfusion.Blazor.Layouts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PanelModel : Object
Constructors
PanelModel()
Declaration
public PanelModel()
Properties
AllowDragging
Gets or sets the dragging value of the panel.
Declaration
public bool AllowDragging { get; set; }
Property Value
Type |
---|
System.Boolean |
Column
Gets or sets the column value where the panel is to be placed.
Declaration
public int Column { get; set; }
Property Value
Type |
---|
System.Int32 |
Content
Gets or sets the template value that should be displayed as the panel's content.
Declaration
public RenderFragment Content { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
CssClass
Gets or sets the CSS class name that can be appended with each panel element. This is used to customize existing styles of panel.
Declaration
public string CssClass { get; set; }
Property Value
Type |
---|
System.String |
Enabled
Gets or sets whether the panel should be enabled or not.
Declaration
public bool Enabled { get; set; }
Property Value
Type |
---|
System.Boolean |
Header
Gets or sets the template value that should be displayed as the panel's header.
Declaration
public RenderFragment Header { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
Id
Gets or sets the id of the panel.
Declaration
public string Id { get; set; }
Property Value
Type |
---|
System.String |
MaxSizeX
Gets or sets the maximum width of the panel in cells count.
Declaration
public Nullable<int> MaxSizeX { get; set; }
Property Value
Type |
---|
System.Nullable<System.Int32> |
MaxSizeY
Gets or sets the maximum height of the panel in cells count.
Declaration
public Nullable<int> MaxSizeY { get; set; }
Property Value
Type |
---|
System.Nullable<System.Int32> |
MinSizeX
Gets or sets the minimum width of the panel in cells count.
Declaration
public int MinSizeX { get; set; }
Property Value
Type |
---|
System.Int32 |
MinSizeY
Gets or sets the minimum height of the panel in cells count.
Declaration
public int MinSizeY { get; set; }
Property Value
Type |
---|
System.Int32 |
Row
Gets or sets a row value where the panel should be placed.
Declaration
public int Row { get; set; }
Property Value
Type |
---|
System.Int32 |
SizeX
Gets or sets the width of the panel in the layout in cells count.
Declaration
public int SizeX { get; set; }
Property Value
Type |
---|
System.Int32 |
SizeY
Gets or sets the height of the panel in the layout in cells count.
Declaration
public int SizeY { get; set; }
Property Value
Type |
---|
System.Int32 |
ZIndex
Gets or sets the z-index of the panel.
Declaration
public double ZIndex { get; set; }
Property Value
Type |
---|
System.Double |