GetConsolidationMethodsTimeStamp

Returns a timestamp that indicates when the application’s consolidation methods were last updated.

Syntax

<HsvMetadata>.GetConsolidationMethodsTimeStamp pdTimeStamp

Argument

Description

pdTimeStamp

Double. Returns the timestamp showing when the consolidation methods were updated.

The timestamp can be converted to a Date format; for example, in Visual Basic you can convert with CDate.

Example

The following function returns the consolidation methods timestamp, converted to a Date format.

Function getConsolMethStamp() As Date
Dim dTime As Double
'g_cMetadata is a previously set HsvMetadata object
g_cMetadata.GetConsolidationMethodsTimeStamp dTime
getConsolMethStamp = CDate(dTime)
End Function