WideStrUtils.WStrPLCopy
From RAD Studio VCL Reference
Contents |
Delphi Information
From WideStrUtils.pas
function WStrPLCopy(Dest: PWideChar; const Source: WideString; MaxLen: Cardinal): PWideChar;
Unit: WideStrUtils
Type: function
Visibility: public
C++ Information
From WideStrUtils.hpp
wchar_t * __fastcall WStrPLCopy(wchar_t * Dest, System::WideString Source, unsigned int MaxLen);
Unit: WideStrUtils
Type: function
Description
Copies characters from a WideString into a PWideChar.
WStrPLCopy copies up to a maximum of MaxLen characters from Source into the PWideChar Dest. WStrPLCopy returns a pointer to Dest.
Note: Dest should point to a location with room for MaxLen + 1 characters, including the null terminator.