FilterControlImages.OperationIsLaterThisYear Property
Gets an object that defines an image for the Is later this year 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>
<OperationIsLaterThisYear Url="Content/IsLaterThisYear.png" ... />
</Images>
</dx:ASPxFilterControl>
In code:
ASPxFilterControl.Images.OperationIsLaterThisYear.Url = "Content/IsLaterThisYear.png";
See Also