creationtime

prop
SYNOPSIS
    int P_CREATION_TIME  "CreationTime"  --  read only

    int Query(P_CREATION_TIME)
      or
    int QueryCreationTime()

DESCRIPTION
    The time of the loading resp. cloning of this object.
    It is counted in seconds since 1-Jan-1970 as the time() efun does.
    The returned value may be further processed with e.g. ctime().

EXAMPLE
    write("Object created "+ctime(obj->Query(P_CREATION_TIME))+".\n");
      -- Prints the creation time of obj.

AVAILABILITY
    Include: <properties.h>

    Availability: /std/base and descendants.

SEE ALSO
    base(S), time(E), ctime(E)