Skip to content

Enum ArgumentExpressionType

Definition

Namespace: StardewUI.Framework.Grammar
Assembly: StardewUI.dll

Defines the possible types of an Argument, which specifies how to resolve its value at runtime.

public enum ArgumentExpressionType

Inheritance
ObjectValueTypeEnum ⇦ ArgumentExpressionType

Fields

Name Value Description
Literal 0 The value is the literal string in the markup, i.e. it is the actual string representation of the target data type such as an integer, enumeration or another string.
ContextBinding 1 The current value of some property in the context data.
EventBinding 2 The value of a named property of the EventArgs subclass of an associated event, when an argument is being provided to an event handler.
TemplateBinding 3 The expanded value of a template parameter; only valid within a template node.