CreateUnoService Function
ཡུ་ཨེན་ཨོ་ཞབས་ཏོག་དང་གཅིག་ཁར་བྱ་སྒོའི་ལམ་ལུགས་ཞབས་ཏོག་འཛིན་སྐྱོང་པ་ཅིག་འཕྲལ་མྱུར་བཟོཝ་ཨིན།
ཨོ་ཞབས་ཏོག་=ཡུ་ཨེན་ཨོ་ཞབས་ཏོག་གསར་བསྐྲུན་འབད(ཡུ་ཨེན་ཨོ་ཞབས་ཏོག་མིང་)
For a list of available services, go to: https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html
Calling Calc functions in Basic:
REM The code below does not work for add-in functions, which have a different calling procedure.
Function MyVlook(item, InRange As Object, FromCol As Integer)
Dim oService As Object
oService = createUnoService("com.sun.star.sheet.FunctionAccess")
REM Always use the function English name
MyVlook = oService.callFunction("VLOOKUP",Array(item, InRange, FromCol, True))
End Function
oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )
འོག་གི་ཨང་རྟགས་ཀྱིས་ཌའི་ལོག་ཁ་ཕྱེ་ཡིག་སྣོད་ཁ་ཕྱེ་ནི་ལུ་ཞབས་ཏོག་ཅིག་ལག་ལེན་འཐབ་ཨིན།
Sub Main
ཨེཕ་མིང = ཡིག་སྣོད་ཁ་ཕྱེ་ཌའི་ལོག ("Please select a file")
དཔར་བསྐྲུན་འབད "file chosen: "+ཨེཕ་མིང་།
End Sub
Function FileOpenDialog(title As String) As String
filepicker = createUnoService("com.sun.star.ui.dialogs.FilePicker")
filepicker.Title = title
filepicker.execute()
files = filepicker.getFiles()
FileOpenDialog=files(0)
End Function