Case

Defines a value to match within a Select block

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Defines a value to match within a Select block

Technical Exegesis...

Defines a value to match within a Select block. Syntax is Case value. If the Select expression matches this value, the code following the Case executes. Multiple Case statements can be used within a single Select block. Execution continues until the next Case, Default, or EndSelect is reached.

Example

Example.bam
; No example implemented yet