Switch to: V12V11V10V9V8V7V6V5

VPicture Class: Construction Methods

VPicture.VPicture()

Declaration:

VPicture( 
	inName as String, 
	inSegmentSize as Integer = 256 )

Parameters:

  • inName - The name of a field.
  • inSegmentSize - The segment size for this BLOB field. Default is 256 bytes.

Description:

Constructor method of VPicture class.

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

Example:

sub tblPerson
name = "tblPerson"
...
fldPhote = new VPicture( "fldPhoto", 512 )
end