Skip to main content
A newer version of this page is available. .
All docs
V22.1
Tab

FilterControlImages.OperationIsEarlierThisYear Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v22.1.dll

NuGet Package: DevExpress.Web

Declaration

public ImageProperties OperationIsEarlierThisYear { 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>
        <OperationIsEarlierThisYear Url="Content/IsEarlierThisYear.png" ... />
    </Images>
</dx:ASPxFilterControl>

In code:

ASPxFilterControl.Images.OperationIsEarlierThisYear.Url = "Content/IsEarlierThisYear.png";
See Also