Outlets are used for returning a status from your Visual Coding (VC) block and determining what will be the next step in the script.
(These are examples of outlets)
A VC block normally has two outlets. Done and Error.
When the block returns the result "Done", the next step in the Visual Coding script will be the block connected to the "Done" outlet.
When the block returns "Error" as result, the next step will then be the block connected to the "Error" outlet (if you have connected one).
However you may add how many outlets as you like to your manager.
The status is returned in the EXECUTE function, as the Result property in the return object. Please see the article about the EXECUTE function for more information.
To add a new outlet to your block follow these steps: