Class GlobalProgressOptions
- Namespace
- Playnite
- Assembly
- Playnite.SDK.dll
Represents option for global progress dialog.
public class GlobalProgressOptions
- Inheritance
-
GlobalProgressOptions
- Inherited Members
Constructors
GlobalProgressOptions(string)
Creates new instance of GlobalProgressOptions.
public GlobalProgressOptions(string text)
Parameters
textstring
GlobalProgressOptions(string, bool, bool, int)
public GlobalProgressOptions(string text, bool cancelable = false, bool isIndeterminate = true, int showDelay = 0)
Parameters
Properties
Cancelable
Gets or sets value indicating whether the progress can be canceled.
public bool Cancelable { get; set; }
Property Value
IsIndeterminate
Gets or sets value indicating whether the progress is indeterminated.
public bool IsIndeterminate { get; set; }
Property Value
ShowDelay
public int ShowDelay { get; set; }
Property Value
Text
Gets or sets progress text.
public string Text { get; set; }