Interface IUIRemovingArgs
- Namespace
- GroupeIsa.Neos.Designer.UIAbstractions.Rule
- Assembly
- GroupeIsa.Neos.Designer.UIAbstractions.dll
Provides arguments for the items removing UI event rule.
public interface IUIRemovingArgs : IUICancelRuleArguments, IUIRuleArguments
- Inherited Members
Properties
ConfirmationMessageText
Gets or sets the text displayed in the confirmation message dialog to display to the user when DisplayConfirmationMessage is true.
string? ConfirmationMessageText { get; set; }
Property Value
Remarks
When null, the default text is used.
null by default.
ConfirmationMessageTitle
Gets or sets the title displayed in the confirmation message dialog to display to the user when DisplayConfirmationMessage is true.
string? ConfirmationMessageTitle { get; set; }
Property Value
Remarks
When null, the default title is used.
null by default.
DisplayConfirmationMessage
Gets or sets a value indicating whether the default deletion confirmation is displayed.
bool DisplayConfirmationMessage { get; set; }
Property Value
Remarks
true by default.
Items
Gets the items being removed.
ReadOnlyArray<IUIView> Items { get; }