Class PanePropertiesModel
Interface for a class PaneProperties.
Inheritance
Namespace: Syncfusion.Blazor.Layouts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PanePropertiesModel : Object
Constructors
PanePropertiesModel()
Declaration
public PanePropertiesModel()
Properties
Collapsed
Specifies whether a pane is collapsed on the initial rendering of the splitter.
Declaration
public bool Collapsed { get; set; }
Property Value
Type |
---|
System.Boolean |
Collapsible
Specifies whether a pane is capable to collapse.
Declaration
public bool Collapsible { get; set; }
Property Value
Type |
---|
System.Boolean |
Content
Specifies the content of the split pane.
Declaration
public string Content { get; set; }
Property Value
Type |
---|
System.String |
CssClass
Specifies the CSS class names that defines specific user-defined styles and themes to be appended on the corresponding pane of the Splitter. It is used to customize the Splitter component panes. One or more custom CSS classes can be specified to the Splitter panes.
Declaration
public string CssClass { get; set; }
Property Value
Type |
---|
System.String |
Max
Specifies the maximum size of a pane. The pane cannot be resized more than the specified maximum limit.
Declaration
public string Max { get; set; }
Property Value
Type |
---|
System.String |
Min
Specifies the minimum size of a pane. The pane cannot be resized less than the specified minimum size.
Declaration
public string Min { get; set; }
Property Value
Type |
---|
System.String |
Resizable
Specifies the value whether a pane is resizable or not. By default, the Splitter panes are resizable. You can disable resize functionality for any specific panes using this property.
Declaration
public bool Resizable { get; set; }
Property Value
Type |
---|
System.Boolean |
Size
Configures the properties for each pane. For horizontal splitter, the size act as width. For vertical splitter, the size act as height.
Declaration
public string Size { get; set; }
Property Value
Type |
---|
System.String |