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

Converts the DayOfWeek format from the vb script to the dotnet. This is required because the previous database design stores day of week as vbSunday, vbMonday etc. in the profile

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

Syntax

C#
public static DayOfWeek ConvertDayOfWeekFromVbScript(
	string vbDow
)
Visual Basic (Declaration)
Public Shared Function ConvertDayOfWeekFromVbScript ( _
	vbDow As String _
) As DayOfWeek
Visual C++
public:
static DayOfWeek ConvertDayOfWeekFromVbScript(
	String^ vbDow
)

Parameters

vbDow
Type: System..::.String
The previous day of week profile value

Return Value

The current day of week as DayOfWeek enumerator

See Also