System.WideStrUtils.WStrMove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function WStrMove(Dest: PWideChar; const Source: PWideChar; Count: Cardinal): PWideChar;

C++

extern DELPHI_PACKAGE System::WideChar * __fastcall WStrMove(System::WideChar * Dest, const System::WideChar * Source, unsigned Count);

Properties

Type Visibility Source Unit Parent
function public
System.WideStrUtils.pas
System.WideStrUtils.hpp
System.WideStrUtils System.WideStrUtils

Description

Copies a specified number of characters from a PWideChar to another PWideChar.

WStrMove copies exactly Count characters from Source to Dest and returns Dest. Source and Dest can overlap.

See Also