System.WideStrUtils.WStrPLCopy
Delphi
function WStrPLCopy(Dest: PWideChar; const Source: WideString; MaxLen: Cardinal): PWideChar;
C++
extern DELPHI_PACKAGE System::WideChar * __fastcall WStrPLCopy(System::WideChar * Dest, const System::WideString Source, unsigned MaxLen);
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.WideStrUtils.pas System.WideStrUtils.hpp |
System.WideStrUtils | System.WideStrUtils |
Description
Copie les caractères d'un WideString dans un PWideChar.
WStrPLCopy copie un maximum de MaxLen caractères de Source dans le PWideChar Dest. WStrPLCopy renvoie un pointeur sur Dest.
Remarque : Dest doit pointer sur un emplacement pouvant accueillir MaxLen + 1 caractères, y compris le terminateur null.