Table of Contents

Interface IUIPropertyChangedArgs<T>

Namespace
GroupeIsa.Neos.Designer.UIAbstractions.Rule
Assembly
GroupeIsa.Neos.Designer.UIAbstractions.dll

Provides arguments for the property changed ui event rule.

public interface IUIPropertyChangedArgs<out T> : IUIRuleArguments

Type Parameters

T

Type of the property.

Properties

OldValue

Gets the old value.

T OldValue { get; }

Property Value

T

PropertyName

Gets the property name.

string PropertyName { get; }

Property Value

string

SelectedLookupItem

Gets the item selected in the lookup the property is bound to.

object? SelectedLookupItem { get; }

Property Value

object

Value

Gets the curent value.

T Value { get; }

Property Value

T