Enable JavaScript in the browser to display LibreOfficeDev Help pages.
기타 문
Statements that do not belong to any of the other categories are described here.
Transfers the control of the program to a subroutine, a function, or a procedure of a Dynamic Link Library (DLL). The keyword, type and number of parameters is dependent on the routine that is being called.
LibreOfficeDev Basic에서 실행할 서브루틴을 DLL 파일에서 선언하고 지정합니다.
Exits a Do...Loop, For...Next, a function, a property, or a subroutine.
Declare 문에 의해 로드된 DLL을 해제합니다. 해제된 DLL은 자체 함수 중 하나가 호출될 경우 자동으로 다시 로드됩니다. 참고 항목: Declare
A function is a block of code which runs when it is called. A function is usually called in an expression.
You can pass data, known as parameters or arguments, into a function. You may pass a parameter by value or by reference. When by reference, modifications applied to the parameter in the function will be sent back to the calling code.
A function usually returns data as a result.
뒤에 값이 오는 식으로 구성된 인수 목록을 평가합니다. Switch 함수는 자신이 전달한 식과 연관된 값을 구합니다.
Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached.