기타 문

Statements that do not belong to any of the other categories are described here.

Call Statement

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.

Choose Function

인수 목록에서 선택한 값을 구합니다.

Declare Statement

Collabora Office Basic에서 실행할 서브루틴을 DLL 파일에서 선언하고 지정합니다.

End Statement

프로시저나 블록을 끝냅니다.

Exit Statement

Exits a Do...Loop, For...Next, a function, a property, or a subroutine.

FreeLibrary Function

Declare 문에 의해 로드된 DLL을 해제합니다. 해제된 DLL은 자체 함수 중 하나가 호출될 경우 자동으로 다시 로드됩니다. 참고 항목: Declare

Function Statement

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.

Rem Statement

프로그램 줄이 주석이라는 것을 지정합니다.

Stop Statement

Basic 프로그램의 실행을 중지합니다.

Sub Statement

서브루틴을 지정합니다.

Switch Function

뒤에 값이 오는 식으로 구성된 인수 목록을 평가합니다. Switch 함수는 자신이 전달한 식과 연관된 값을 구합니다.

With Statement

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.

Please support us!