Skip to main content

IEditor Interface

Namespace: NextDesign.Core

Description

Access object to editor information.

Belonging Area

NameDescription
EditorA group of APIs to access editors.

Inherit Base

NameDescription
IRepresentationAccess object to representation information.

Derived from

NameDescription
IDiagramAccess object for diagram editor information.
If the EditorType of IEditor is "ERDiagram" or "TreeDiagram", you can access information specific to the diagram editor by casting to this interface type.
ITreeGridAccess object for tree grid information.
If the EditorType of IEditor is "TreeGrid", you can access information specific to the tree grid by casting to this interface type.
IFormAccess object for form editor information.
If the EditorType of IEditor is "DocumentForm", you can access information specific to the form by casting to this interface type.
ICustomEditorAn object to access custom editor information.
ISequenceDiagramAn object to access sequence diagram (diagram) information.
IConfigurationEditorAn object to access configuration editor information.

Property

NameDescription
EditorDefinitionView definition for this editor
EditorTypeEditor type
"ERDiagram" : ER diagram
"TreeDiagram" : Tree diagram
"SequenceDiagram" : Sequence diagram
"DocumentForm" : Document form
"TreeGrid" : Tree grid
"Custom" : Custom

Method

NameDescription
GetSelectedElementsGets the elements selected in the editor.
The collection of selected elements is in an unspecified order.
If no elements are selected, returns an empty collection.