Search Results for

    Show / Hide Table of Contents

    Delegate ProgresEvent

    Callback invoked during a long-running operation to report progress (current of count) and to let the handler request cancellation via the cancelar parameter.

    Namespace: Reportman.Drawing.Forms
    Assembly: Reportman.Drawing.Forms.dll
    Syntax
    public delegate void ProgresEvent(int current, int count, ref bool cancelar)
    Parameters
    Type Name Description
    int current Callback invoked during a long-running operation to report progress (current of count) and to let the handler request cancellation via the cancelar parameter.
    int count Callback invoked during a long-running operation to report progress (current of count) and to let the handler request cancellation via the cancelar parameter.
    bool cancelar Callback invoked during a long-running operation to report progress (current of count) and to let the handler request cancellation via the cancelar parameter.

    Constructors

    View Source

    ProgresEvent(object, nint)

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

    Methods

    View Source

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

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

    EndInvoke(ref bool, IAsyncResult)

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

    Invoke(int, int, ref bool)

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