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

FilterControlImages.OperationIsTomorrow Property

Gets an object that defines an image for the Is tomorrow menu item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v22.1.dll

NuGet Package: DevExpress.Web

Declaration

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

In code:

ASPxFilterControl.Images.OperationIsTomorrow.Url = "Content/IsTomorrow.png";
See Also