Skip to main content
A newer version of this page is available. .
Tab

FABActionItem.Image Property

Gets the settings of an image displayed within the action item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ImageProperties Image { get; }

Property Value

Type Description
ImageProperties

A ImageProperties object that contains image settings.

Remarks

Use the Image property to specify the image displayed within the action item.


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

FAB-Action-Image

Concept

Floating Action Button

Online Demo

Floating Action Button - Features

See Also