Skip to main content
All docs
V23.2
Tab

FilterControlImages.OperationIsEarlierThisMonth Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

In code:

ASPxFilterControl.Images.OperationIsEarlierThisMonth.Url = "Content/IsEarlierThisMonth.png";
See Also