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

Updates the account template

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

Syntax

C#
public void UpdateAccountTemplate(
	int templateId,
	string name,
	bool isHtml,
	bool isActive,
	string description,
	string subject,
	string html,
	string text,
	int loginUserId
)
Visual Basic (Declaration)
Public Sub UpdateAccountTemplate ( _
	templateId As Integer, _
	name As String, _
	isHtml As Boolean, _
	isActive As Boolean, _
	description As String, _
	subject As String, _
	html As String, _
	text As String, _
	loginUserId As Integer _
)
Visual C++
public:
void UpdateAccountTemplate(
	int templateId, 
	String^ name, 
	bool isHtml, 
	bool isActive, 
	String^ description, 
	String^ subject, 
	String^ html, 
	String^ text, 
	int loginUserId
)

Parameters

templateId
Type: System..::.Int32
The unique id of the template
name
Type: System..::.String
The name of the template
isHtml
Type: System..::.Boolean
True if the template is an html template
isActive
Type: System..::.Boolean
True if the template is active
description
Type: System..::.String
The description of the template
subject
Type: System..::.String
The subject of the template
html
Type: System..::.String
The html of the template
text
Type: System..::.String
The text of the template
loginUserId
Type: System..::.Int32
The unique id of the login user

See Also