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