| (8 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | The RemoveFromDictionary activity removes an item, specified by an unique key, from a given dictionary. | ||
| + | |||
| + | =Description= | ||
{{ActivityInfoBox | {{ActivityInfoBox | ||
| title = Remove from Dictionary | | title = Remove from Dictionary | ||
| Line 9: | Line 12: | ||
| version = 2.1+ | | version = 2.1+ | ||
}} | }} | ||
| − | |||
| − | ==Arguments== | + | ===Arguments=== |
{| class="wikitable sortable" | width = "50%" | {| class="wikitable sortable" | width = "50%" | ||
|- | |- | ||
! Argument !! Type !! Direction !! Purpose | ! Argument !! Type !! Direction !! Purpose | ||
|- align="left" | |- align="left" | ||
| − | | Dictionary || IDictionary< | + | | Dictionary || IDictionary<{{String_MSDN}},{{Object_MSDN}}> || In || The dictionary containing the items |
|- align="left" | |- align="left" | ||
| − | | Key || | + | | Key || {{String_MSDN}} || In || The item's key |
|- align="left" | |- align="left" | ||
| − | | Result|| {{ | + | | Result|| {{Boolean_MSDN}} || Out || True if item has been removed |
|} | |} | ||
| − | ==Usage== | + | ===Usage=== |
This activity removes an item, specified by its unique key, from the given dictionary. | This activity removes an item, specified by its unique key, from the given dictionary. | ||
| + | |||
| + | <!-- DO NOT REMOVE THIS -->{{Activity/End}}<!-- DO NOT REMOVE THIS --> | ||
==See also== | ==See also== | ||
* [[Workflow Designer]] | * [[Workflow Designer]] | ||
| + | * [[Activity:AddToDictionary_(Activity)]] | ||
| − | + | [[Category:Activities|RemoveFromDictionary (Activity)]] | |
| − | [[Category:Activities]] | + | |
Latest revision as of 10:04, 4 November 2015
The RemoveFromDictionary activity removes an item, specified by an unique key, from a given dictionary.