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

The constructor to create a photo information object.

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

Syntax

C#
public PhotoInfo(
	int photoId,
	string photoFile,
	int folderId,
	string photoName,
	string photoDesc,
	DateTime cdate,
	int createdByUserId,
	string createdByUserName,
	string albumName
)
Visual Basic (Declaration)
Public Sub New ( _
	photoId As Integer, _
	photoFile As String, _
	folderId As Integer, _
	photoName As String, _
	photoDesc As String, _
	cdate As DateTime, _
	createdByUserId As Integer, _
	createdByUserName As String, _
	albumName As String _
)
Visual C++
public:
PhotoInfo(
	int photoId, 
	String^ photoFile, 
	int folderId, 
	String^ photoName, 
	String^ photoDesc, 
	DateTime cdate, 
	int createdByUserId, 
	String^ createdByUserName, 
	String^ albumName
)

Parameters

photoId
Type: System..::.Int32
The system generated unique identifier for the photos.
photoFile
Type: System..::.String
The file name of the photo.
folderId
Type: System..::.Int32
The folder identifier which holds the photo.
photoName
Type: System..::.String
The user given name for the photo.
photoDesc
Type: System..::.String
The Description of the photo.
cdate
Type: System..::.DateTime
The created date for the photo.
createdByUserId
Type: System..::.Int32
The identifier of the user who created the photo.
createdByUserName
Type: System..::.String
the name of the user who created the photo.
albumName
Type: System..::.String
The name of the album that holds the photo.

See Also