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