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

Constructor using various parameters.

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

Syntax

C#
public FolderInfo(
	int folderId,
	string folderName,
	string folderPath,
	string virtualPath,
	string level,
	int createdByUserId,
	string createdByUserName,
	DateTime modifiedDate,
	int modifiedByUserId,
	string modifiedByUserName,
	DateTime createdDate,
	int groupId,
	int appId,
	int parentId
)
Visual Basic (Declaration)
Public Sub New ( _
	folderId As Integer, _
	folderName As String, _
	folderPath As String, _
	virtualPath As String, _
	level As String, _
	createdByUserId As Integer, _
	createdByUserName As String, _
	modifiedDate As DateTime, _
	modifiedByUserId As Integer, _
	modifiedByUserName As String, _
	createdDate As DateTime, _
	groupId As Integer, _
	appId As Integer, _
	parentId As Integer _
)
Visual C++
public:
FolderInfo(
	int folderId, 
	String^ folderName, 
	String^ folderPath, 
	String^ virtualPath, 
	String^ level, 
	int createdByUserId, 
	String^ createdByUserName, 
	DateTime modifiedDate, 
	int modifiedByUserId, 
	String^ modifiedByUserName, 
	DateTime createdDate, 
	int groupId, 
	int appId, 
	int parentId
)

Parameters

folderId
Type: System..::.Int32
The system generated unique identifier for the document folder.
folderName
Type: System..::.String
The name of the folder.
folderPath
Type: System..::.String
The full path of the folder.
virtualPath
Type: System..::.String
The virtual path
level
Type: System..::.String
The Level of the folder.
createdByUserId
Type: System..::.Int32
The unique identifier for the user who created the folder.
createdByUserName
Type: System..::.String
The name of the user who created the folder.
modifiedDate
Type: System..::.DateTime
The date on which the folder is modified.
modifiedByUserId
Type: System..::.Int32
The unique id of the user who modified the folder
modifiedByUserName
Type: System..::.String
The modified by user name
createdDate
Type: System..::.DateTime
The created date
groupId
Type: System..::.Int32
The unique identifier of the group where this folder belongs to.
appId
Type: System..::.Int32
The application identifier of the application that created the folder.
parentId
Type: System..::.Int32
The Id of the parent folder.

See Also