Я пытаюсь создать макрос, который изменит и заменит текущий выделенный текст в OpenOffice Writer.
Пока мой макрос выглядит так:
sub myReplaceSelection
Dim oDoc
Dim oVC
Dim R As String
oDoc = ThisComponent
oVC = oDoc.CurrentController.getViewCursor
If Len(oVC.String) > 0 Then
R = processSelection(oVC.String)
'replace the selection:
'which function should I call here ? <------------------
'
EndIf
End sub
Function processSelection( s As String) As String
'... ok , this part works fine
End Function
Как я могузаменить текущий выделенный текст моей строкой 'R'?
Спасибо