Data.DB.TField.AsBytes

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: TField

Delphi

property AsBytes: TArray<Byte> read GetAsBytes write SetAsBytes;

C++

__property System::DynamicArray<System::Byte> AsBytes = {read=GetAsBytes, write=SetAsBytes};

Description

Represents the value of the field as an array of bytes.

Use AsBytes to read the value of the field's data into an array of bytes or to assign a TBytes value to the contents of the field.

See Also