Developer Guides 2026x Modeling Tools Developer Guide Working with diagrams Presentation elements (symbols) Working with presentation elements Current: Moving symbols on diagram to another location Moving symbols on diagram to another location To move a symbol on the diagram to another location, you can use the following method: PresentationElementManager.getInstance().movePresentationElement(PresentationElement view, Point location) JAVA PresentationElement view = ...; SessionsManager.getInstance().createSession("Move symbol"); PresentationsElementsManager.getInstance().movePresentationElement(view, new Point(50, 50)); SessionsManager.getInstance().closeSession(); JAVA Similarly, a group of symbols can be moved by using the following method: movePresentationElements(List<PresentationElement> views, Point location) JAVA You can find the code examples in<installation_directory>\openapi\examples\symbolmove Related pages Session management ×