Data.DBXPlatform.TDBXPlatform.CopyByteArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure CopyByteArray(const Source: TArray<Byte>; SourceOffset: Integer; const Dest: TArray<Byte>; DestOffset: Integer; Count: Integer); static; inline;

C++

static void __fastcall CopyByteArray(const System::DynamicArray<System::Byte> Source, int SourceOffset, const System::DynamicArray<System::Byte> Dest, int DestOffset, int Count);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DBXPlatform.pas
Data.DBXPlatform.hpp
Data.DBXPlatform TDBXPlatform

Description

Copies elements of an array of TBytes.

The CopyByteArray static method copies Count elements from Source, at SourceOffset to Dest, at DestOffset.

Source and Dest are of type TBytes.

See Also