Interface IDocumentTemplateInfo
Interface providing information about the document template.
Namespace: SuperOffice.CRM
Assembly: SuperOffice.Plugins.dll
Syntax
public interface IDocumentTemplateInfo
Properties
DocumentStoredInPluginId
The id of the document plugin that handles the document generated from the template. i.e. the destination plugin. Stored in DocTmpl.AutoEventId in the database.
Declaration
int DocumentStoredInPluginId { get; }
Property Value
Type | Description |
---|---|
int |
ExternalReference
Physical name of the document template. URL or Filename of the content. Stored in database as DocTmpl.Filename
Declaration
string ExternalReference { get; }
Property Value
Type | Description |
---|---|
string |
Id
Primary key of the document template.
Declaration
int Id { get; }
Property Value
Type | Description |
---|---|
int |
IsDeleted
True, if the document is deleted.
Declaration
bool IsDeleted { get; }
Property Value
Type | Description |
---|---|
bool |
MimeType
Mime Type of the document template. Set by the document plugin during template creation.
Declaration
string MimeType { get; }
Property Value
Type | Description |
---|---|
string |
Name
Display Name of the document template (in lists).
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
string |
Rank
Order for the document template.
Declaration
int Rank { get; }
Property Value
Type | Description |
---|---|
int |
Registered
When the template was created.
Declaration
DateTime Registered { get; }
Property Value
Type | Description |
---|---|
DateTime |
TemplateStoredInPluginId
The id of the document plugin that handles the document template. i.e. the source plugin. Stored in DocTmpl.LoadTemplateFromPlugin in the database.
Declaration
int TemplateStoredInPluginId { get; }
Property Value
Type | Description |
---|---|
int |
Tooltip
Tooltip description for the document template
Declaration
string Tooltip { get; }
Property Value
Type | Description |
---|---|
string |
Updated
When the template was last updated.
Declaration
DateTime Updated { get; }
Property Value
Type | Description |
---|---|
DateTime |