CreateUnoService Function

ProcessServiceManager āĻāϰ āϏāĻžāĻĨ⧇ āĻāĻ•āϟāĻŋ Uno āϏāĻžāĻ°ā§āĻ­āĻŋāϏ āĻĻā§āϰ⧁āϤ āϏāĻŽā§āĻĒāĻ¨ā§āύ āĻ•āϰ⧇āĨ¤

āϏāĻŋāύāĻŸā§āϝāĻžāĻ•ā§āϏ:

oService = CreateUnoService( Uno service name )

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

āωāĻĻāĻžāĻšāϰāĻŖ:

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

āύāĻŋāĻŽā§āύ⧋āĻ•ā§āϤ āϕ⧋āĻĄ āĻāĻ•āϟāĻŋ āĻĢāĻžāχāϞ āĻ–ā§‹āϞāĻžāϰ āĻĄāĻžāϝāĻŧāĻžāϞāĻ— āϖ⧁āϞāϤ⧇ āĻāĻ•āϟāĻŋ āĻĒāϰāĻŋāϏ⧇āĻŦāĻž āĻŦā§āϝāĻŦāĻšāĻžāϰ āĻ•āϰ⧇:āω

Sub Main

    fName = FileOpenDialog ("Please select a file")

    print "file chosen: "+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