LibreOffice SymbolLibreOffice Symbol

Please support us!

CreateUnoDialog Function

Basic 런타임 도중에 Uno 대화 상자 콘트롤을 나타내는 Basic Uno 개체를 만듭니다.

대화 상자는 대화 상자 라이브러리에 지정됩니다. 대화 상자를 표시하려면 라이브러리에서 "라이브" 대화 상자를 만들어야 합니다.

를 참조하십시오.

Syntax:

CreateUnoDialog( oDlgDesc )

Return type:

Object

Parameters:

Name

Type

Description

oDlgDesc

Object

The dialog object stored in a library.


Example:


  ' Get dialog description from the dialog library
  oDlgDesc = DialogLibraries.Standard.Dialog1
  ' Generate "live" dialog
  oDlgControl = CreateUnoDialog( oDlgDesc )
  ' display "live" dialog
  oDlgControl.execute