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
TUIViewType of the UIView.
TPropertyType 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
SelectedLookupItem
Gets the item selected in the lookup the property is bound to.
object? SelectedLookupItem { get; }
Property Value
Value
Gets the curent value.
TProperty Value { get; }
Property Value
- TProperty