Ft_timestamp – Kofax DM API User Manual

Page 403

Advertising
background image

DM API T

OKENS

383

%FT_TIMESTAMP

%FT_TIMESTAMP

This token is used when a full text search is performed. It returns the
last time the object was modified.

Syntax

PCDSearch.AddReturnProperty(“%FT_TIMESTAMP”)

Parameters

Usage

The search returns timestamp information expressed in Unix format,
showing the number of seconds since January 1, 1970 at 12:00 A.M.

Example

'Create a search object.

Set pClient = CreateObject("PCDClient.PCDSearch.1")


'Return timestamp information.

pClient.AddReturnProperty("%FT_TIMESTAMP")


'Execute the search.

pClient.Execute()


'Create a variable to hold the retrieved search value.

Dim vValue As Variant


'Retrieve the data.

vValue = pClient.GetPropertyValue(“%FT_TIMESTAMP”)


'Process the data.

Related Items

See the

PCDSearch

object.

See the

AddReturnProperty

method.

See the following tokens:

%FT_TIMESTAMP

Return timestamp information about the
search object.

Advertising