Since uno:GoDown select is broken, how can I select for example 10 cells down
(or right) the current cell in a basic macro?
Thanks
--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Postin
ot;Select" does not select
anything even when true. Only "Sel".
> Another way of doing the same could be this:
>
> Dim oViewCursor As Object
> oViewCursor = ThisComponent.CurrentController.getViewCursor()
> oViewCursor.GoDown(9, "True")
>
This code
'Select area of insertion
args1(0).Name = "By"
args1(0).Value = 9
args1(1).Name = "Sel"
args1(1).Value = true
dispatcher.executeDispatch(document, ".uno:GoDown", "", 0, args1())
selects only 2 lines instead of 10!!!
Thanks for any help/comment.
--
For unsubs