VText Class: Construction Methods
VText.VText()
Declaration:
VText( inName as String, inSegmentSize as integer = 256, inFlags as integer = 0, inMethod as String = "" )
Parameters:
- inName - The name of field.
- inSegmentSize - The segment size for this BLOB field. Default is 256 bytes.
- inFlags - The field flags. Default is fNone.
- inMethod - The method formula. Default is empty.
Description:
Constructor method of VText class.
You may need to use this method only if you use the Class Style of coding.
Example:
sub tblPerson name = "tblPerson" ... fldNotes = new VText( "fldNotes", 128, fnone ) end