Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Quick Links

Video Overview

https://vimeo.com/681959492

About Enums

The term "enum" is short for "enumerated list". It is a common programming term that simply means a user-defined list. You would use an enum if you would like to create a variable that has a list of options or states.

Create an Enum

1. Click on the Enum Editor in the shortcut menu on the right side of the screen:

2. Under Space Enums, click into the field New Enum Name and give. your Enum a title, then hit enter. In this example, I’ve named the enum “Server Rack Position::

3. To create the items in the list, ensure the arrow next to the new name is pointed downwards and then give the first item a name in the New Enum Item Name field:

In this example I’ve named it “In” and then hit enter when you are done typing. Do the same for any additional items.

Now you have an enum you can use in a Variable:

  • No labels