alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class GalleryGroup

    Represents a group in a gallery within the Ribbon.

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

    Constructors

    GalleryGroup()

    Declaration
    public GalleryGroup()

    Properties

    CssClass

    Gets or sets the CSS class to customize the gallery groups.

    Declaration
    [Parameter]
    public string CssClass { get; set; }
    Property Value
    Type Description
    string

    A string value representing the CSS class applied to the gallery groups. The default value is String.Empty.

    Remarks

    This property allows you to apply custom CSS styles to the gallery groups, enabling further customization of their appearance.

    Header

    Gets or sets the header for the group items in the Ribbon gallery popup.

    Declaration
    [Parameter]
    public string Header { get; set; }
    Property Value
    Type Description
    string

    A string value representing the header text for the gallery group. The default value is String.Empty.

    Remarks

    This property specifies the header text that appears above the group items in the Ribbon gallery popup.

    ItemHeight

    Gets or sets the item height for the gallery items.

    Declaration
    [Parameter]
    public string ItemHeight { get; set; }
    Property Value
    Type Description
    string

    A string value specifying the height of the gallery items. The default value is "auto".

    Remarks

    Use this property to set the height of the items in the gallery. Setting it to "auto" lets the items adjust their height automatically.

    ItemWidth

    Gets or sets the item width for the gallery items.

    Declaration
    [Parameter]
    public string ItemWidth { get; set; }
    Property Value
    Type Description
    string

    A string value specifying the width of the gallery items. The default value is "auto".

    Remarks

    Use this property to set the width of the items in the gallery. Setting it to "auto" lets the items adjust their width automatically.

    Items

    Gets or sets the collection of gallery items in the Ribbon.

    Declaration
    [Parameter]
    public List<GalleryItem> Items { get; set; }
    Property Value
    Type Description
    List<GalleryItem>

    A List<T> representing the individual items in the gallery.

    Remarks

    This property allows you to configure multiple items displayed directly in the Ribbon gallery.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved