FilterControlImages.OperationIsLastWeek Property
Gets an object that defines an image for the Is last week menu item.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
ImageProperties | An object that defines image settings. |
Remarks
In markup:
<dx:ASPxFilterControl ID="filter" runat="server">
<Columns>
<dx:FilterControlColumn PropertyName="Date" ColumnType="DateTime" />
<!--...-->
</Columns>
<Images>
<OperationIsLastWeek Url="Content/IsLastWeek.png" ... />
</Images>
</dx:ASPxFilterControl>
In code:
ASPxFilterControl.Images.OperationIsLastWeek.Url = "Content/IsLastWeek.png";
See Also