INavigator.SelectedItems property

Namespace: NextDesign.Desktop

Description

Element selected in the navigator

In the current version, only the following navigators support this property: - Model Navigator - Product Line Navigator

ICollection SelectedItems {get;}

type

  • ICollection

Annotation

About API specification change and migration method in Ver.1.1

From Ver.1.1, the type of this property will be changed from IObjectCollection to (C#) ICollection. If you are using this API, you need to change the relevant part in the extension along with the version upgrade to Ver.1.1 or later.

Change it by referring to the following example.

Change before

IObjectCollection selectedItems = EditorPage.CurrentNavigator.SelectedItems;

After change

System.Collections.ICollection selectedItems = EditorPage.CurrentNavigator.SelectedItems;