CreationTime Property (FPScript)
Read access to an object's creation time.
Syntax
[Object].CreationTime
The syntax of the CreationTime property consists of the following elements:
Element |
Description |
---|---|
Object |
Optional. The object being accessed. If you omit this element, then the current formula is accessed. In the case of embedded FPScript you have to use the This keyword. |
Remarks
The creation time is returned as a calendar time value.
Available in
FlexPro Basic, Professional, Developer Suite
Example
Dim Result, Paths, Obj Paths = .\.Objects(".*\.dat").Names For Each Row i in Paths Do Set Obj = $Paths$ If Obj.CreationTime >= '1.1.2004' Then Result = Result : Mean(Obj) End End |
Calculates the mean values for all data sets that were created after 1/1/2004 and located in the same folder in which this example formula is located. |