Click or drag to resize

DbServer.Header Property

X#
A numeric value representing the length of the database file header.

Namespace:  VO
Assembly:  VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL PROPERTY Header AS USUAL GET 
Request Example View Source

Property Value

Type: Usual
A numeric value representing the length of the database file header.
Examples
This example uses Header to define an access method to return the Size of the data server:
X#
1CLASS Sales INHERIT DBServer
2...
3ACCESS Size CLASS Sales
4RETURN (SELF:RecSize * SELF:RecCount) + ;
5SELF:Header + 1
See Also