Data.DB.TDataSet.RecordSize

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

property RecordSize: Word read GetRecordSize;

C++

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

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