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

Imports a set of events mapped from a CSV file which has been exported from Outlook or Lotus Notes events.

Namespace:  OfficeClip.DBLayer.Desktop
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public DataTable ImportEventsFromCsv(
	ArrayList csvEventList,
	bool isGroupEvent,
	ConfigureInfo session
)
Visual Basic (Declaration)
Public Function ImportEventsFromCsv ( _
	csvEventList As ArrayList, _
	isGroupEvent As Boolean, _
	session As ConfigureInfo _
) As DataTable
Visual C++
public:
DataTable^ ImportEventsFromCsv(
	ArrayList^ csvEventList, 
	bool isGroupEvent, 
	ConfigureInfo^ session
)

Parameters

csvEventList
Type: System.Collections..::.ArrayList
List of OCCSVEventInfo objects containing all the event information mapped from a CSV file.
isGroupEvent
Type: System..::.Boolean
Flag (True/False) indicating whether the events being imported are to imported as Group Events.
session
Type: OfficeClip.Utils..::.ConfigureInfo
The current login session

Return Value

DataTable indicating the status of the import whether it was successful. DataTable has following columns.
  • eventName (System.String) -- Name of the imported Event
  • startDatetime (System.DateTime) -- Date and Time when the event is starting.
  • endDatetime (System.DateTime) -- Date and Time when the event is ending.
  • status -- (System.String) -- String describing the status of the import whether it was successful or it failed.

See Also