Interface IProgressWindow
Interface for wait dialog control
Namespace: Simplic.Studio.UI
Assembly: Simplic.Studio.UI.dll
Syntax
public interface IProgressWindow
Properties
| Improve this Doc View SourceCancel
Gets the cancel flag
Declaration
bool Cancel { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsCompleted
Gets or sets the completet flag
Declaration
bool IsCompleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFailed
Gets or sets the failed flag
Declaration
bool IsFailed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsIndeterminate
Gets or sets the type of the progressbar
Declaration
bool IsIndeterminate { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ProgressMax
Gets or sets the maximum value of the progressbar
Declaration
int ProgressMax { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ProgressMin
Gets or sets the minimum value of the progressbar
Declaration
int ProgressMin { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ProgressValue
Gets or sets the current value of the progressbar
Declaration
int ProgressValue { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |