aspnet-devexpress-dot-web-dot-fabactiongroup.md
Gets an image which collapses the action group on a click.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public ImageProperties CollapseImage { get; }
Public ReadOnly Property CollapseImage As ImageProperties
| Type | Description |
|---|---|
| ImageProperties |
An ImageProperties object that contains image settings.
|
The CollapseImage property provides access to the settings that define an image for the action group’s collapse button when the group is expanded. A click on this image collapses the group.
<dx:FABActionGroup ContextName="FocusedRowContext">
<CollapseImage Url="../Content/FloatingActionButton/Images/CollapseImage.svg"></CollapseImage>
<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>
Floating Action Button - Features
See Also