Table of Contents

Interface IUIRemovingArgs<TUIView>

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

Provides arguments for the items removing UI event rule.

public interface IUIRemovingArgs<TUIView> : IUICancelRuleArguments, IUIRuleArguments where TUIView : class, IUIView

Type Parameters

TUIView

The type of UI view.

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

string

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

string

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

bool

Remarks

true by default.

Items

Gets the items being removed.

ReadOnlyArray<TUIView> Items { get; }

Property Value

ReadOnlyArray<TUIView>