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

Constructor

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

Syntax

C#
public TemplateInfo(
	int templateId,
	decimal accountId,
	decimal groupId,
	decimal userId,
	TemplateType templateType,
	Category category,
	bool isHtml,
	string name,
	string description,
	string subject,
	string html,
	string text,
	int createdByUserId,
	DateTime createdByTimestamp,
	int lastUpdatedUserId,
	DateTime lastUpdatedTimestamp,
	bool isActive
)
Visual Basic (Declaration)
Public Sub New ( _
	templateId As Integer, _
	accountId As Decimal, _
	groupId As Decimal, _
	userId As Decimal, _
	templateType As TemplateType, _
	category As Category, _
	isHtml As Boolean, _
	name As String, _
	description As String, _
	subject As String, _
	html As String, _
	text As String, _
	createdByUserId As Integer, _
	createdByTimestamp As DateTime, _
	lastUpdatedUserId As Integer, _
	lastUpdatedTimestamp As DateTime, _
	isActive As Boolean _
)
Visual C++
public:
TemplateInfo(
	int templateId, 
	Decimal accountId, 
	Decimal groupId, 
	Decimal userId, 
	TemplateType templateType, 
	Category category, 
	bool isHtml, 
	String^ name, 
	String^ description, 
	String^ subject, 
	String^ html, 
	String^ text, 
	int createdByUserId, 
	DateTime createdByTimestamp, 
	int lastUpdatedUserId, 
	DateTime lastUpdatedTimestamp, 
	bool isActive
)

Parameters

templateId
Type: System..::.Int32
The unique id of the constructor
accountId
Type: System..::.Decimal
The unique id of the account
groupId
Type: System..::.Decimal
The unique id of the group
userId
Type: System..::.Decimal
The unique id of the user
templateType
Type: OfficeClip.BusinessLayer.Template..::.TemplateType
The template type enumerated type
category
Type: OfficeClip.BusinessLayer.Template..::.Category
The category enumerated type
isHtml
Type: System..::.Boolean
true if the template is an html template, false if it is a text template
name
Type: System..::.String
the name of the template
description
Type: System..::.String
The description of the template
subject
Type: System..::.String
The subject of the tempalte
html
Type: System..::.String
The html part of the template
text
Type: System..::.String
The text part of teh template
createdByUserId
Type: System..::.Int32
The unique id of the creator
createdByTimestamp
Type: System..::.DateTime
the created by timestamp
lastUpdatedUserId
Type: System..::.Int32
the unique id of the last updated user
lastUpdatedTimestamp
Type: System..::.DateTime
the last updated timestamp
isActive
Type: System..::.Boolean
true if active

See Also