コピー先ドキュメントを指定する場合は args(0).Value の箇所にTitleを指定する。TitleはgetArgs()メソッドで取得できる配列から取得する。※ドキュメントのウインドウタイトルとは異なるので注意
Dim newSheetName As String newSheetName = "コピー先" ThisComponent.Sheets.copyByName("コピー元シート名", newSheetName, 0) ThisComponent.CurrentController.Select(ThisComponent.Sheets.getByName(newSheetName)) Dim document as Object Dim dispatcher as Object document = ThisComponent.CurrentController.Frame dispatcher = createUnoService("com.sun.star.frame.DispatchHelper") Dim args(2) as new com.sun.star.beans.PropertyValue args(0).Name = "DocName" args(0).Value = "" args(1).Name = "Index" args(1).Value = 32767 args(2).Name = "Copy" args(2).Value = false dispatcher.executeDispatch(document, ".uno:Move", "", 0, args())