Class ProgressPanelUpdateArgs
Arguments used for the
Inherited Members
Namespace: Gorgon.Editor.UI
Assembly: Gorgon.Editor.API.dll
Syntax
public class ProgressPanelUpdateArgs : EventArgs
Properties
| Edit this page View SourceCancelAction
Property to set or return the method to execute when the operation is cancelled from the panel.
Declaration
public Action CancelAction { get; set; }
Property Value
Type | Description |
---|---|
Action |
IsMarquee
Property to set or return whether to use a marquee for the progress bar.
Declaration
public bool IsMarquee { get; set; }
Property Value
Type | Description |
---|---|
bool |
Message
Property to set or return the message for the panel.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
PercentageComplete
Property to set or return the percentage complete as a normalized (0..1) value.
Declaration
public float PercentageComplete { get; set; }
Property Value
Type | Description |
---|---|
float |
Title
Property to set or return the title for the panel.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
string |