Given a string, capitalizes each word in the string that is not in the "StayLower" list defined in StayLower.

Namespace:  Asi.iBO
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public static string AutoUpperLower(
	string input
)
Visual Basic (Declaration)
Public Shared Function AutoUpperLower ( _
	input As String _
) As String
Visual C++
public:
static String^ AutoUpperLower(
	String^ input
)

Parameters

input
Type: System..::.String
The string to capitalize.

Return Value

The string with each word in the string that is not in the "StayLower" list capitalized.

See Also