Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Resource addJournal: Difference between revisions

From Catglobe Wiki
Tungocman (talk | contribs)
No edit summary
Cg_pham (talk | contribs)
No edit summary
 
Line 1: Line 1:
{{HelpFiles}}
= Resource_addJournal  =
= Resource_addJournal  =



Latest revision as of 02:51, 14 December 2011

Resource_addJournal

Add a journal information to a specific resource.


Syntax

Resource_addJournal(Object)


Arguments

Object: is a ResourceJournalEntry objects.


Return type

Empty.


Examples

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

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

number ResourceID=37246024;  // Resource ID

ResourceJournalEntry Rjt = new ResourceJournalEntry(ResourceID, commentType, Content);

Resource_addJournal(Rjt);