DbServer.Header Property | |
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
public virtual Usual Header { get; }
Request Example
View SourceProperty Value
Type:
UsualA 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:
1CLASS Sales INHERIT DBServer
2...
3ACCESS Size CLASS Sales
4RETURN (SELF:RecSize * SELF:RecCount) + ;
5SELF:Header + 1
See Also