Default

Provides a fallback case in a Select block when no Case matches

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Provides a fallback case in a Select block when no Case matches

Technical Exegesis...

Provides a fallback case in a Select block when no Case matches. Executes if none of the Case values match the Select expression. Similar to Else in an If statement. Optional but recommended to handle unexpected values. Should be placed after all Case statements and before EndSelect.

Example

Example.bam
; No example implemented yet