Skip to main content
All docs
V23.2
Tab

FilterControlImages.OperationIsLaterThisMonth Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

In code:

ASPxFilterControl.Images.OperationIsLaterThisMonth.Url = "Content/IsLaterThisMonth.png";
See Also