DbServer.RecSize Property | |
A numeric value representing the record length of the server in bytes.
Namespace:
VO
Assembly:
VORDDClasses (in VORDDClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY RecSize AS USUAL GET
public virtual Usual RecSize { get; }
Request Example
View SourceProperty Value
Type:
UsualA numeric value representing the record length of the server in bytes.
Examples
This example uses RecSize 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