Search Results for

    Show / Hide Table of Contents

    Delegate DataProgressEvent

    Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation.

    Namespace: Reportman.Reporting
    Assembly: Reportman.Drawing.dll
    Syntax
    public delegate void DataProgressEvent(object sender, int records, int count, ref bool docancel)
    Parameters
    Type Name Description
    object sender Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation.
    int records Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation.
    int count Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation.
    bool docancel Progress callback invoked periodically during a long export, reporting the number of records processed out of the total; set docancel to true to abort the operation.

    Constructors

    View Source

    DataProgressEvent(object, nint)

    Declaration
    public DataProgressEvent(object @object, nint method)
    Parameters
    Type Name Description
    object object
    nint method

    Methods

    View Source

    BeginInvoke(object, int, int, ref bool, AsyncCallback, object)

    Declaration
    public virtual IAsyncResult BeginInvoke(object sender, int records, int count, ref bool docancel, AsyncCallback callback, object @object)
    Parameters
    Type Name Description
    object sender
    int records
    int count
    bool docancel
    AsyncCallback callback
    object object
    Returns
    Type Description
    IAsyncResult
    View Source

    EndInvoke(ref bool, IAsyncResult)

    Declaration
    public virtual void EndInvoke(ref bool docancel, IAsyncResult result)
    Parameters
    Type Name Description
    bool docancel
    IAsyncResult result
    View Source

    Invoke(object, int, int, ref bool)

    Declaration
    public virtual void Invoke(object sender, int records, int count, ref bool docancel)
    Parameters
    Type Name Description
    object sender
    int records
    int count
    bool docancel
    • View Source
    In this article
    Back to top Generated by DocFX