Class SelectionMode

java.lang.Object
com.nomagic.magicdraw.ui.dialogs.selection.SelectionMode

@OpenApiAll public final class SelectionMode extends Object
Describes element selection mode. Element selection can support single/multiple selection modes. The multiple selection mode allows to initialize selection in single mode.
See Also:
  • Field Details

    • SINGLE_MODE

      public static final SelectionMode SINGLE_MODE
      Single selection mode.
    • MULTIPLE_MODE

      public static final SelectionMode MULTIPLE_MODE
      Multiple selection mode (with initial multiple selection).
    • MULTIPLE_MODE_SINGLE_INITIAL

      public static final SelectionMode MULTIPLE_MODE_SINGLE_INITIAL
      Multiple selection mode with initial single selection mode.
  • Method Details

    • isSingleMode

      public boolean isSingleMode()
      Check selection mode.
      Returns:
      true - single selection mode, false - multiple selection mode.
    • isInitialSingleMode

      public boolean isInitialSingleMode()
      Check initial selection mode. If isSingleMode() returns true, this method also returns true. Only multiple selection mode supports multiple initial selection mode.
      Returns:
      true - single selection mode, false - multiple selection mode.