Skip to content

Interface IValueSource<T>

Definition

Namespace: StardewUI.Framework.Sources
Assembly: StardewUI.dll

Abstract representation of the source of any value, generally as used in a data binding.

public interface IValueSource<T> : StardewUI.Framework.Sources.IValueSource

Type Parameters

T
Type of value supplied.

Implements
IValueSource

Members

Properties

Name Description
Value Gets the current value obtained from the most recent Update(Boolean), or writes a new value when set.

Details

Properties

Value

Gets the current value obtained from the most recent Update(Boolean), or writes a new value when set.

T Value { get; set; }
Property Value

T