|
|
|
|
|
TimestampType (Property) In french: TimestampType
The TimestampType property is used to: - Find out the type of timestamp for an item. This item was defined in the data model editor or programmatically.
- Define the type of timestamp for a Date, Time or DateTime item (when describing the item through programming).
Reminder: A "Timestamp" field cannot be assigned by programming.. The date the record was created or last changed will automatically be assigned to it. AFile is File Description
AnItem is Item Description
AnItem.Name = "CmdDate"
UneRubrique.TimestampType = htsCreation
UneRubrique.TimestampUTC = False
HDescribeItem(AFile, AnItem)
Syntax
Find out the type of timestamp for an item Hide the details
<Result> = <Data file>.<Item>.TimestampType
<Result>: Integer constant Type ot timestamp for the item: | | htsCreation | Timestamp when creating the record only. | htsLastModification | Timestamp whenever modifying the record. | htsNone | No timestamp. |
<Data file>: Character string Name of the data file used. <Item>: Character string Name of item used. Remarks - In the data model editor, you have the ability to define a Timestamp item.
- To define a Timestamp item programmatically:
- The item must be a DateTime, Date or Time item,
- the timestamp type is specified with the TimestampType property.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|