Class PanelModel
Defines the PanelModel class for Panel.
Inherited Members
Namespace: Syncfusion.Blazor.Layouts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PanelModel
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 |
|---|
| bool |
Column
Gets or sets the column value where the panel is to be placed.
Declaration
public int Column { get; set; }
Property Value
| Type |
|---|
| int |
Content
Gets or sets the template value that should be displayed as the panel's content.
Declaration
[JsonIgnore]
public RenderFragment Content { get; set; }
Property Value
| Type |
|---|
| 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 |
|---|
| string |
Enabled
Gets or sets whether the panel should be enabled or not.
Declaration
public bool Enabled { get; set; }
Property Value
| Type |
|---|
| bool |
Header
Gets or sets the template value that should be displayed as the panel's header.
Declaration
[JsonIgnore]
public RenderFragment Header { get; set; }
Property Value
| Type |
|---|
| RenderFragment |
Id
Gets or sets the id of the panel.
Declaration
public string Id { get; set; }
Property Value
| Type |
|---|
| string |
MaxSizeX
Gets or sets the maximum width of the panel in cells count.
Declaration
public int? MaxSizeX { get; set; }
Property Value
| Type |
|---|
| int? |
MaxSizeY
Gets or sets the maximum height of the panel in cells count.
Declaration
public int? MaxSizeY { get; set; }
Property Value
| Type |
|---|
| int? |
MinSizeX
Gets or sets the minimum width of the panel in cells count.
Declaration
public int MinSizeX { get; set; }
Property Value
| Type |
|---|
| int |
MinSizeY
Gets or sets the minimum height of the panel in cells count.
Declaration
public int MinSizeY { get; set; }
Property Value
| Type |
|---|
| int |
Row
Gets or sets a row value where the panel should be placed.
Declaration
public int Row { get; set; }
Property Value
| Type |
|---|
| int |
SizeX
Gets or sets the width of the panel in the layout in cells count.
Declaration
public int SizeX { get; set; }
Property Value
| Type |
|---|
| int |
SizeY
Gets or sets the height of the panel in the layout in cells count.
Declaration
public int SizeY { get; set; }
Property Value
| Type |
|---|
| int |
ZIndex
Gets or sets the z-index of the panel.
Declaration
public double ZIndex { get; set; }
Property Value
| Type |
|---|
| double |