Difference between revisions of "GetDateTimeConstant"

From Catglobe Wiki
Jump to: navigation, search
Line 7: Line 7:
 
'''Syntax'''
 
'''Syntax'''
  
getDateTimeConstant(''name [, resource_Guid]'')
+
getDateTimeConstant(''name [, resource_Guid | resourceId]'')
  
 
'''Arguments'''
 
'''Arguments'''
Line 15: Line 15:
 
''resource_Guid:'' Is a string expression. It is the Guid of the resource.
 
''resource_Guid:'' Is a string expression. It is the Guid of the resource.
  
If there is no resource_Guid specified, the function will get the DateTime constant from the current resource project questionnaire’s project questionnaire (i.e. a resource project questionnaire context is needed).
+
''resourceId:'' number. Resource id of resource.
 +
 
 +
If there is no resource_Guid or resourceId specified, the function will get the DateTime constant from the current resource project questionnaire’s project questionnaire (i.e. a resource project questionnaire context is needed).
  
 
'''Return type'''
 
'''Return type'''
  
array
+
array DateTime
  
 
The function returns an array as date time object of the constant. It contains year, month, day, hours, minutes, seconds, milliseconds and week in the exact order.  
 
The function returns an array as date time object of the constant. It contains year, month, day, hours, minutes, seconds, milliseconds and week in the exact order.  
Line 25: Line 27:
 
'''Examples'''
 
'''Examples'''
  
 +
Use resourceGUID
 +
<source lang="javascript">
 
array value = getDateTimeConstant("MyDateTimeConstant", "9FB4543F-84F7-4B5E-91F2-5DEFE72B1FB3");
 
array value = getDateTimeConstant("MyDateTimeConstant", "9FB4543F-84F7-4B5E-91F2-5DEFE72B1FB3");
 
+
print(value);//value = {2008, 1, 4, 10, 0, 0, 0, 1}
print(value);
+
</source>
 
+
User resourceId
//value = {2008, 1, 4, 10, 0, 0, 0, 1}  
+
<source lang="javascript">
 +
array value = getDateTimeConstant("MyDateTimeConstant", 12345678);
 +
print(value);//value = {2008, 1, 4, 10, 0, 0, 0, 1}  
 +
</source>
  
 
'''Availability'''
 
'''Availability'''
  
 
Version 5.4
 
Version 5.4

Revision as of 06:25, 31 December 2018


getDateTimeConstant

Gets the value of a DateTime constant belonging to a specific resource.

Syntax

getDateTimeConstant(name [, resource_Guid | resourceId])

Arguments

name: Is a string expression. It is the name of the constant.

resource_Guid: Is a string expression. It is the Guid of the resource.

resourceId: number. Resource id of resource.

If there is no resource_Guid or resourceId specified, the function will get the DateTime constant from the current resource project questionnaire’s project questionnaire (i.e. a resource project questionnaire context is needed).

Return type

array DateTime

The function returns an array as date time object of the constant. It contains year, month, day, hours, minutes, seconds, milliseconds and week in the exact order.

Examples

Use resourceGUID

array value = getDateTimeConstant("MyDateTimeConstant", "9FB4543F-84F7-4B5E-91F2-5DEFE72B1FB3");
print(value);//value = {2008, 1, 4, 10, 0, 0, 0, 1}

User resourceId

array value = getDateTimeConstant("MyDateTimeConstant", 12345678);
print(value);//value = {2008, 1, 4, 10, 0, 0, 0, 1}

Availability

Version 5.4