EnumConverterToTextTEnumType Method

Note: This API is now obsolete.
Convert an enumeration value to string by use of the built-in ToString() function.

Definition

Namespace: Scanjour.Workflow4.Base
Assembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 24.4.0.0 (24.4.0.0)
C#
[ObsoleteAttribute("Please use WorkZone.Utilities.EnumUtilities.ToText<T>(T, bool) instead.", 
	true)]
public static string ToText<TEnumType>(
	TEnumType value,
	bool forceUppercase = false
)

Parameters

value  TEnumType
The enumeration value to convert
forceUppercase  Boolean  (Optional)
If true, convert the result to uppercase

Type Parameters

TEnumType
The enumeration type of the parameter value

Return Value

String
The corresponding string representation

See Also