Skip to main content

INavigator.Items property

Namespace: NextDesign.Desktop

Description

All management elements of this navigator

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

  • Model Navigator
  • Product Line Navigator

You can get the items under the partial load node, and the items under the partial load node are included after the items under the project node.

  • Example) In the following cases, Items = [projectA, modelA, modelB, modelB1, modelX, modelY, modelY1].
    • projectA
      • modelA
      • modelB
        • modelB1
    • Partial load node
      • modelX
      • modelY
        • modelY1
ICollection Items {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 items = EditorPage.CurrentNavigator.Items;

After change

System.Collections.ICollection items = EditorPage.CurrentNavigator.Items;