CreateUnoService Function

Crea unha instancia de servizo Uno por medio de ProcessServiceManager.

Sintaxe:

oService = CreateUnoService( nome de servizo Uno )

For a list of available services, go to: https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html

Exemplo:

Calling Calc functions in Basic:


    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

Exemplo:

oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )

O seguinte código utiliza un servizo para abrir unha caixa de diálogo de abertura de ficheiros:


Sub Main
    fName = FileOpenDialog ("Seleccione un ficheiro")
    print "ficheiro seleccionado: "+fName
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

Precisamos da súa axuda!