I have several pages with headings, and I want to be able to define these headings as string constants in some enumeration. Something like that
pageTitles =
| HOME = "Home"
| SALES = "Sales"
| MARKETING = "Marketing"
| LOGOUT = "Logout"
and then use it like:
if title = pageTitles.SALES then
//Goto sales
source
share