Oracle® WebCenter Interaction Development Kit 10.3.3.0.0

ISelectionList.RemoveValues Method 

Removes an array of text values from the selection list.

void RemoveValues(
   string[] values
);

Parameters

values
An array of text values to be removed from the selection list. The values cannot be null or contain an empty string or strings longer than 255 characters. Text values will preserve whitespace when stored and are case-sensitive during comparison. Only exact matches will be removed and duplicate string values will only be removed once.

Remarks

The removed values will not be removed permanently until Store is called.

Exceptions

Exception Type Condition
InvalidOperationException The selection list has already been removed.
ArgumentException The values contain an empty string, or a string longer than 255 characters.

See Also

ISelectionList Interface | Plumtree.Remote.PRC.Content.SelectionList Namespace