Switch to: V12V11V10V9V8V7V6V5

VTime Class: Construction Methods

VTime.VTime()

Declaration:

VTime( 
	inName as String, 
	inFlags as Integer = fNone, 
	inMethod as string = "" )

Parameters:

  • inName - The name of field.
  • inFlags - The field flags. Default is fNone.
  • inMethod - The method formula. Default is empty.

Description:

Constructor of VTime Class.

You may need to use this method only if you use the Class Style of coding.

Example:

sun tblPerson
    name = "tblPerson"
 
    fldBornTime = new VTime( "fldBornTime", fIndexed )
end