PowerShell Tip#1: Get Enum Values – Engineerer
237
post-template-default,single,single-post,postid-237,single-format-standard,wp-custom-logo,bridge-core-3.1.2,qode-page-transition-enabled,ajax_fade,page_not_loaded,,footer_responsive_adv,hide_top_bar_on_mobile_header,qode-content-sidebar-responsive,qode-theme-ver-30.1,qode-theme-bridge,qode_header_in_grid,elementor-default,elementor-template-full-width,elementor-kit-641,elementor-page-1064

PowerShell Tip#1: Get Enum Values

To get all possible enum values you can follow this blog post from PowerShellMagazine.

To make things even easier, you can call GetEnumValues() directly on the returned object from GetType().

Get Enum Values in Action