Difference between revisions of "Task getCompletionDeadline"

From Catglobe Wiki
Jump to: navigation, search
(Syntax&amp)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''Task_getCompletionDeadline'''
+
= Task_getCompletionDeadline =
  
   Get completion deadline (should be carried out) of a specific task.  
+
Get completion deadline (should be carried out before) of a specific task.  
  
'''Syntax&nbsp;<br>'''&nbsp; Task_getCompletionDeadline(TaskResourceID)<br>
+
=== Syntax ===
  
'''Arguments<br>'''&nbsp; TaskResourceID: is a number. It is resource id of task<br> <br>'''Return type<br>'''&nbsp;&nbsp; UTC date time array
+
Task_getCompletionDeadline(TaskResourceID)
 +
<br>
  
<br>'''Examples'''
+
=== Arguments  ===
  
array taskDeadLine = Task_getCompletionDeadline(37245949);<br> print(taskDeadLine); //{2011,10,9,9,48,0,0,40}<br>  
+
TaskResourceID: is a number. It is resource id of task
 +
<br>  
 +
 
 +
=== Return type ===
  
 +
UTC date time array
 
<br>  
 
<br>  
 +
 +
=== Examples  ===
 +
 +
array taskDeadLine = Task_getCompletionDeadline(37245949);
 +
<br>
 +
print(taskDeadLine); //{2011,10,9,9,48,0,0,40}<br>
 +
<br>
 +
 +
__NOTOC__
  
 
[[Category:Tasks]]
 
[[Category:Tasks]]

Latest revision as of 11:03, 10 November 2011

Task_getCompletionDeadline

Get completion deadline (should be carried out before) of a specific task.

Syntax

Task_getCompletionDeadline(TaskResourceID)

Arguments

TaskResourceID: is a number. It is resource id of task

Return type

UTC date time array

Examples

array taskDeadLine = Task_getCompletionDeadline(37245949);
print(taskDeadLine); //{2011,10,9,9,48,0,0,40}