[This is preliminary documentation and is subject to change.]

Converts the boolean values on the tracker screen to its database representation to store in the database. In general the database stores the values as '0' and '1', and the user sees them on the screen as the localized version of "Yes" and "No".

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

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

Parameters

tciVal
Type: System..::.String
The screen values, If the culture is US English, possible values are "Yes" and "No"

Return Value

The output screen can be "0"(corresponds to "No") or "1" (corresponds to "Yes")

See Also