Skip to main content
All docs
V25.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.v25.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