-
Notifications
You must be signed in to change notification settings - Fork 3
Utils.ItemAddingStringEventArgs
JaykeBird edited this page Feb 21, 2023
·
5 revisions
Back to home | Back to Reference | View raw text
The event arguments for the ItemAdding event of the LimitableStringCollection.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi.Utils
SolidShineUi.Utils.ItemAddingStringEventArgs[[ItemAddingStringEventArgs]]
end
subgraph System
System.EventArgs[[EventArgs]]
end
System.EventArgs --> SolidShineUi.Utils.ItemAddingStringEventArgs
Type | Name | Methods |
---|---|---|
bool |
Cancel Get or set whether the addition of this item should be cancelled. By default, this is set to false , as in "do not cancel". |
get, set |
string |
Item Get the item about to be added. |
get |
The event arguments for the ItemAdding event of the LimitableStringCollection.
EventArgs
public ItemAddingStringEventArgs(string item)
Type | Name | Description |
---|---|---|
string |
item | The item about to be added. |
Create an ItemAddingStringEventArgs.
public string Item { get; }
Get the item about to be added.
public bool Cancel { get; set; }
Get or set whether the addition of this item should be cancelled. By default, this is set to false
, as in "do not cancel".
Generated with ModularDoc