alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class PanePropertiesModel

    Interface for a class PaneProperties.

    Inheritance
    object
    PanePropertiesModel
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Layouts
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PanePropertiesModel

    Constructors

    PanePropertiesModel()

    Declaration
    public PanePropertiesModel()

    Properties

    Collapsed

    Specifies whether a pane is collapsed on the initial rendering of the splitter.

    Declaration
    [JsonPropertyName("collapsed")]
    public bool Collapsed { get; set; }
    Property Value
    Type
    bool

    Collapsible

    Specifies whether a pane is capable to collapse.

    Declaration
    [JsonPropertyName("collapsible")]
    public bool Collapsible { get; set; }
    Property Value
    Type
    bool

    Content

    Specifies the content of the split pane.

    Declaration
    [JsonPropertyName("content")]
    public string Content { get; set; }
    Property Value
    Type
    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
    [JsonPropertyName("cssClass")]
    public string CssClass { get; set; }
    Property Value
    Type
    string

    Max

    Specifies the maximum size of a pane. The pane cannot be resized more than the specified maximum limit.

    Declaration
    [JsonPropertyName("max")]
    public string Max { get; set; }
    Property Value
    Type
    string

    Min

    Specifies the minimum size of a pane. The pane cannot be resized less than the specified minimum size.

    Declaration
    [JsonPropertyName("min")]
    public string Min { get; set; }
    Property Value
    Type
    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
    [JsonPropertyName("resizable")]
    public bool Resizable { get; set; }
    Property Value
    Type
    bool

    Size

    Configures the properties for each pane. For horizontal splitter, the size act as width. For vertical splitter, the size act as height.

    Declaration
    [JsonPropertyName("size")]
    public string Size { get; set; }
    Property Value
    Type
    string
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved