DbServer.RecSize Property (Typed) | |
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
public virtual uint RecSize { get; }
Request Example
View SourceProperty Value
Type:
DWordA 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