GoDigram for .NET Framework and .NET Core
Northwoods.Go.Layout Namespace / GoLayout Class / Progress Event
In This Topic
    Progress Event
    In This Topic
    The Progress event is raised at various times during the PerformLayout routine to indicate progress. In particular, a Progress event should be raised at the start of the layout with a progress of 0.0 and at the end of the layout with a progress of 1.0. Other calls with progress values should be layout routine specific.
    Syntax
    public event GoLayoutProgressEventHandler Progress
    Event Data

    The event handler receives an argument of type GoLayoutProgressEventArgs containing data related to this event. The following GoLayoutProgressEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets an optional message string that describes the current state of the call to PerformLayout.  
    Gets or sets the ratio that PerformLayout is done.  
    See Also