Demos About Radzen
Search Results for

    Show / Hide Table of Contents

    Class LoadDataArgs

    Supplies information about a LoadData event that is being raised.

    Inheritance
    object
    LoadDataArgs
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: Radzen
    Assembly: Radzen.Blazor.dll
    Syntax
    public class LoadDataArgs

    Constructors

    LoadDataArgs()

    Supplies information about a LoadData event that is being raised.

    Declaration
    public LoadDataArgs()

    Properties

    Filter

    Gets the filter expression as a string.

    Declaration
    public string Filter { get; set; }
    Property Value
    Type Description
    string

    The filter.

    Filters

    Gets the filter expression as a collection of filter descriptors.

    Declaration
    public IEnumerable<FilterDescriptor> Filters { get; set; }
    Property Value
    Type Description
    IEnumerable<FilterDescriptor>

    OrderBy

    Gets the sort expression as a string.

    Declaration
    public string OrderBy { get; set; }
    Property Value
    Type Description
    string

    Skip

    Gets how many items to skip. Related to paging and the current page. Usually used with the Skip<TSource>(IEnumerable<TSource>, int) LINQ method.

    Declaration
    public int? Skip { get; set; }
    Property Value
    Type Description
    int?

    Sorts

    Gets the sort expression as a collection of sort descriptors.

    Declaration
    public IEnumerable<SortDescriptor> Sorts { get; set; }
    Property Value
    Type Description
    IEnumerable<SortDescriptor>

    The sorts.

    Top

    Gets how many items to take. Related to paging and the current page size. Usually used with the Take<TSource>(IEnumerable<TSource>, int) LINQ method.

    Declaration
    public int? Top { get; set; }
    Property Value
    Type Description
    int?

    The top.

    Introducing Radzen Blazor Studio

    Radzen Blazor Studio is a software development environment that empowers developers to design, build and deploy Blazor applications without the traditional hurdles. Write less code and get more done.

    Learn More

    Download Now
    Download Now
    In This Article
    Back to top Radzen Blazor Components, © 2018-2025 Radzen. Source Code licensed under MIT