FABActionGroup.ExpandImage Property
In This Article
Gets an image which expands the action group on a click.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public ImageProperties ExpandImage { get; }
#Property Value
Type | Description |
---|---|
Image |
An Image |
#Remarks
The ExpandImage property provides access to the settings that define an image for the action group’s expand button when the group is collapsed. A click on this image expands the group.
<dx:FABActionGroup ContextName="FocusedRowContext">
<ExpandImage Url="../Content/FloatingActionButton/Images/EditRowContext.svg"></ExpandImage>
<Items>
<dx:FABActionItem ActionName="DeleteRow" Text="Delete">
<Image Url="../Content/FloatingActionButton/Images/Delete.svg"></Image>
</dx:FABActionItem>
<dx:FABActionItem ActionName="EditRow" Text="Edit">
<Image Url="../Content/FloatingActionButton/Images/Edit.svg"></Image>
</dx:FABActionItem>
</Items>
</dx:FABActionGroup>
#Concept
#Online Demo
Floating Action Button - Features
See Also