4D v14.3METHOD GET MODIFICATION DATE |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v14.3
METHOD GET MODIFICATION DATE
|
METHOD GET MODIFICATION DATE ( path ; modDate ; modTime {; *} ) | ||||||||
Parameter | Type | Description | ||||||
path | Text, Text array |
![]() |
Text or Text array containing one or more method path(s) | |||||
modDate | Date, Date array |
![]() |
Method modification date(s) | |||||
modTime | Time, Longint array |
![]() |
Method modification time(s) | |||||
* | Operator |
![]() |
If passed = command applies to host database when executed from a component (parameter ignored outside of this context) | |||||
The METHOD GET MODIFICATION DATE command returns, in the modDate and modTime parameters, the dates and times of the last modification of the method(s) designated by the path parameter.
You can use two types of syntaxes, based either on arrays or variables:
C_TEXT(tVpath) // variables
C_DATE(vDate)
C_TIME(vTime)
METHOD GET MODIFICATION DATE(tVpath;vDate;vTime) // date and time of a single method
ARRAY TEXT(arrPaths;0) // arrays
ARRAY DATE(arrDates;0)
ARRAY LONGINT(arrTimes;0)
METHOD GET MODIFICATION DATE(arrPaths;arrDates;arrTimes) // dates and times of several methods
You cannot mix the two syntaxes.
If the command is executed from a component, it applies by default to the component methods. If you pass the * parameter, it accesses the methods of the host database.
Product: 4D
Theme: Design Object Access
Number:
1170
Created: 4D v13
4D Language Reference ( 4D v14 R2)
4D Language Reference ( 4D v14 R3)
4D Language Reference ( 4D v13.5)
4D Language Reference ( 4D v14.3)
4D Language Reference ( 4D v14 R4)