Click or drag to resize

GetBaseClassAddOptionEnumListT Method (String, T, T)

Adds a choice of enumerated values as list option. Allows to include only some enumerated values.

Namespace:  Rhino.Input.Custom
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax
public int AddOptionEnumList<T>(
	string englishOptionName,
	T defaultValue,
	T[] include
)
where T : struct, new(), IConvertible

Parameters

englishOptionName
Type: SystemString
The name of the option
defaultValue
Type: T
The default value
include
Type: T
An array of enumerated values to use. This argument can also be null; in this case, the whole enumerated is used.

Type Parameters

T
The enumerated type

Return Value

Type: Int32
Option index
Exceptions
ExceptionCondition
ArgumentExceptionGets thrown if defaultValue provided is not an enumerated type.
See Also