Data.DB.TDataSet.RecordSize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RecordSize: Word read GetRecordSize;

C++

__property System::Word RecordSize = {read=GetRecordSize, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Indicates the size of a record in the dataset.

RecordSize indicates the size needed for internal record buffers. In TDataSet, the value of RecordSize is always 0 because TDataSet does not implement record buffering. Descendant classes that buffer records override the property getter to return the number of bytes in a record buffer.

See Also