Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To move a symbol on the diagram to another location and to a different parent, you can use the following method:

Code Block
languagejava
	movePresentationElement(PresentationElement view, PresentationElement parent, Point location)

Code Block
languagejava
    PresentationElement view = ...; 
    SessionManager.getInstance().createSession("Move symbol"); 
    PresentationElementsManager.getInstance().movePresentationElement(view, newParent, new Point(50, 50)); 
    SessionManager.getInstance().closeSession();

Similarly, a group of symbols can be moved by using the following method:

Code Block
languagejava
    movePresentationElements(List<PresentationElement> views, PresentationElement parent, Point location)


Info

 You can find the code examples in

  • <programinstallation directory><installation_directory>\openapi\examples\symbolmove



Panel
titleRelated pages