Class MessageBoxResponse
- Namespace
- Playnite
- Assembly
- Playnite.SDK.dll
Represents message box response options.
public class MessageBoxResponse
- Inheritance
-
MessageBoxResponse
- Inherited Members
Constructors
MessageBoxResponse(string, bool, bool)
Creates new instance of MessageBoxResponse.
public MessageBoxResponse(string title, bool isDefault = false, bool isCancel = false)
Parameters
Properties
IsCancel
Gets or sets value indicating whether this is option to cancel the request.
public bool IsCancel { get; set; }
Property Value
IsDefault
Gets or sets value indicating whether this is default option.
public bool IsDefault { get; set; }
Property Value
Title
Gets or sets title of response option.
public string Title { get; set; }