T GetComboEnum( Sandbox.StringToken& k, T& defaultValue )

book_4_sparkGenerated
code_blocksInput

Description

The GetComboEnum<T> method in the RenderAttributes class is used to retrieve a value of an enumerated type T associated with a specified key. If the key does not exist, it returns a default value provided by the caller.

Usage

To use the GetComboEnum<T> method, you need to pass a reference to a StringToken that represents the key and a reference to a default value of type T. The method will return the value associated with the key if it exists, otherwise, it will return the default value.

Ensure that the type T is an enum type, as this method is specifically designed to work with enumerated types.

Example

// Example usage of GetComboEnum<T>
RenderAttributes renderAttributes = new RenderAttributes();
StringToken key = new StringToken("exampleKey");
MyEnum defaultValue = MyEnum.DefaultValue;

// Retrieve the enum value associated with the key, or the default value if the key does not exist
MyEnum result = renderAttributes.GetComboEnum<MyEnum>(ref key, ref defaultValue);