Table of Contents

Class MessageBoxOption

Namespace
Playnite.SDK
Assembly
Playnite.SDK.dll

Represents message box response options.

public class MessageBoxOption
Inheritance
MessageBoxOption
Inherited Members

Constructors

MessageBoxOption(string, bool, bool)

Creates new instance of MessageBoxOption.

public MessageBoxOption(string title, bool isDefault = false, bool isCancel = false)

Parameters

title string
isDefault bool
isCancel bool

Properties

IsCancel

Gets or sets value indicating whether this is option to cancel the request.

public bool IsCancel { get; set; }

Property Value

bool

IsDefault

Gets or sets value indicating whether this is default option.

public bool IsDefault { get; set; }

Property Value

bool

Title

Gets or sets title of response option.

public string Title { get; set; }

Property Value

string