AppearanceDictionary.Remove

Remove(string)

Removes key from the dictionary.

public bool Remove(string key)
ParameterTypeDescription
keyStringKey to be removed from the dictionary.

Return Value

true if key was successfully removed.

See Also


Remove(KeyValuePair<string, XForm>)

Removes key/value pair from the collection.

public bool Remove(KeyValuePair<string, XForm> item)
ParameterTypeDescription
itemKeyValuePair`2Key/value pair to be removed.

Return Value

true if pair was found and removed.

See Also