Skip to main content
All docs
V23.2
Tab

FilterControlImages.OperationIsPriorThisYear Property

Gets an object that defines an image for the Is prior to this year menu item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ImageProperties OperationIsPriorThisYear { get; }

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>
        <OperationIsPriorThisYear Url="Content/IsPriorThisYear.png" ... />
    </Images>
</dx:ASPxFilterControl>

In code:

ASPxFilterControl.Images.OperationIsPriorThisYear.Url = "Content/IsPriorThisYear.png";
See Also