MultiSelector.EndUpdateSelectedItems Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Commits the selected items to the MultiSelector.
protected:
void EndUpdateSelectedItems();
protected void EndUpdateSelectedItems ();
member this.EndUpdateSelectedItems : unit -> unit
Protected Sub EndUpdateSelectedItems ()
Exceptions
IsUpdatingSelectedItems is false
when this method is called.
Examples
The following example shows how to use the EndUpdateSelectedItems method in a class derived from MultiSelector.
if (!this.IsUpdatingSelectedItems)
{
this.BeginUpdateSelectedItems();
foreach (object item in itemsToAdd)
{
this.SelectedItems.Add(item);
}
this.EndUpdateSelectedItems();
}
Remarks
This method sets IsUpdatingSelectedItems to false
and updates the SelectedItems collection.
The BeginUpdateSelectedItems method sets IsUpdatingSelectedItems to true
.