Click or drag to resize

DbServer.RecSize Property (Typed)

X#
A numeric value representing the record length of the server in bytes.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VORDDClasses (in XSharp.VORDDClasses.dll) Version: 2.19
Syntax
 VIRTUAL PROPERTY RecSize AS DWORD GET 
Request Example View Source

Property Value

Type: DWord
A 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:
X#
1CLASS Sales INHERIT DBServer
2...
3ACCESS Size CLASS Sales
4RETURN (SELF:RecSize * SELF:RecCount) + ;
5SELF:Header + 1
See Also