aspnet-devexpress-dot-web-dot-fabactionitem.md
Gets the settings of an image displayed within the action item.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public ImageProperties Image { get; }
Public ReadOnly Property Image As ImageProperties
| Type | Description |
|---|---|
| ImageProperties |
A ImageProperties object that contains image settings.
|
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>
Floating Action Button - Features
See Also