Table of Contents

Interface IUIPropertyChangedArgs<TUIView, TProperty>

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

Provides arguments for the property changed ui event rule.

public interface IUIPropertyChangedArgs<TUIView, TProperty> : IUIRuleArguments where TUIView : class, IUIView

Type Parameters

TUIView

Type of the UIView.

TProperty

Type of the property.

Properties

Item

Gets the item the property belongs to.

TUIView Item { get; }

Property Value

TUIView

OldValue

Gets the old value.

TProperty OldValue { get; }

Property Value

TProperty

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.

TProperty Value { get; }

Property Value

TProperty