Back to Devexpress

FABActionGroup.ExpandImage Property

aspnet-devexpress-dot-web-dot-fabactiongroup-488266de.md

latest2.1 KB
Original Source

FABActionGroup.ExpandImage Property

Gets an image which expands the action group on a click.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public ImageProperties ExpandImage { get; }
vb
Public ReadOnly Property ExpandImage As ImageProperties

Property Value

TypeDescription
ImageProperties

An ImageProperties object that contains image settings.

|

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.

aspx
<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

Floating Action Button

Online Demo

Floating Action Button - Features

See Also

FABActionGroup Class

FABActionGroup Members

DevExpress.Web Namespace