Skip to main content

INavigator.SelectedItems property

Namespace: NextDesign.Desktop

Description

The element selected in the navigator

In the current version, only the following navigators support this property:

  • Model Navigator
  • Product Line Navigator

Also, the partial load node displayed in the model navigator is not included in this property.

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 is 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.

Please refer to the following example to change it.

Change before

IObjectCollection selectedItems = EditorPage.CurrentNavigator.SelectedItems;

After change

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