Table of Contents

Class SettingChangedEventArgs

Namespace
WindowSill.API
Assembly
WindowSill.API.dll

Represents the event arguments for the SettingChanged event.

public sealed class SettingChangedEventArgs : EventArgs
Inheritance
SettingChangedEventArgs
Inherited Members
Extension Methods

Constructors

SettingChangedEventArgs(string, object?)

Initializes a new instance of the SettingChangedEventArgs class.

public SettingChangedEventArgs(string settingName, object? newValue)

Parameters

settingName string

Indicates the name of the setting that changed.

newValue object

Indicates the new value of the setting.

Properties

NewValue

Gets the new value of the setting that changed.

public object? NewValue { get; }

Property Value

object

SettingName

Gets the name of the setting that changed.

public string SettingName { get; }

Property Value

string