Class HelpRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the help table.
Inherited Members
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class HelpRecordData
Remarks
Please use this class instead of a full HelpRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding HelpTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
HelpRecordData()
Declaration
public HelpRecordData()
Fields
ApplicationAreaId
The id of the application_area, if this page is the description for a application_area..
Declaration
public int ApplicationAreaId
Field Value
Type | Description |
---|---|
Int32 |
Body
The actual body for the helppage. HTML format.
Declaration
public string Body
Field Value
Type | Description |
---|---|
String |
HelpId
The primary key (auto-incremented)
Declaration
public int HelpId
Field Value
Type | Description |
---|---|
Int32 |
Language
A string indicating the language for this helppage ('no' or 'en').
Declaration
public string Language
Field Value
Type | Description |
---|---|
String |
ModuleId
The id of the module, if this page is the description for a module..
Declaration
public int ModuleId
Field Value
Type | Description |
---|---|
Int32 |
Name
The name for this help page.
Declaration
public string Name
Field Value
Type | Description |
---|---|
String |
ParentId
The id of the parent help page. NULL or -1 if this is a toplevel helppage.
Declaration
public int ParentId
Field Value
Type | Description |
---|---|
Int32 |
ScreenId
The id of the screen, if this page is the description for a screen..
Declaration
public int ScreenId
Field Value
Type | Description |
---|---|
Int32 |
SortOrder
The sort-order for this helppage when listed among its siblings.
Declaration
public int SortOrder
Field Value
Type | Description |
---|---|
Int32 |
Title
The title for this help page.
Declaration
public string Title
Field Value
Type | Description |
---|---|
String |