Resource addJournal

From Catglobe Wiki
Revision as of 05:19, 14 November 2011 by Nguyentanphong (talk | contribs) (Created page with "= Resource_addJournal = Add a journal information to a specific resource. <br> === Syntax === Resource_addJournal(ResourceID) <br> === Arguments === ResourceID: is ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Resource_addJournal

Add a journal information to a specific resource.


Syntax

Resource_addJournal(ResourceID)


Arguments

ResourceID: is a number. It is the resource id of resource


Return type

Empty.


Examples

string commentType="UndoComplete";   // Type of journal

string content="test Undo complete"; // Content of journal

number QRID=37246024;  // phong questionnaire 1

ResourceJournalEntry Rjt = new ResourceJournalEntry(QRID, commentType, content);

Resource_addJournal(Rjt);