Class GalleryItemRenderEventArgs
Provides information about the ItemRendering event callback.
Inherited Members
Namespace: Syncfusion.Blazor.Ribbon
Assembly: Syncfusion.Blazor.dll
Syntax
public class GalleryItemRenderEventArgs : BaseEventArgs
Remarks
This event is used for customizing the rendering logic of gallery items.
Constructors
GalleryItemRenderEventArgs()
Declaration
public GalleryItemRenderEventArgs()
Properties
Item
Gets or sets the gallery item data for custom rendering.
Declaration
public GalleryItem Item { get; set; }
Property Value
Type | Description |
---|---|
GalleryItem | A GalleryItem containing the item to be rendered. |
Remarks
Use this property to access or modify the data of the gallery item being rendered. It is particularly useful for implementing custom rendering logic or dynamic styling based on item properties.