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

Puts a single email or a set of emails into a particular folder.

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

Syntax

C#
public int PutEmailsInFolder(
	int folderId,
	ArrayList emailIdList
)
Visual Basic (Declaration)
Public Function PutEmailsInFolder ( _
	folderId As Integer, _
	emailIdList As ArrayList _
) As Integer
Visual C++
public:
int PutEmailsInFolder(
	int folderId, 
	ArrayList^ emailIdList
)

Parameters

folderId
Type: System..::.Int32
Id of the folder into which the selected email or emails have to be moved.
emailIdList
Type: System.Collections..::.ArrayList
ArrayList of ids of the emails which need to be moved to a particular email folder identified by emailFolderId.

Return Value

0 when successful, -1 in case of an error.

See Also