System.WideStrUtils.WStrCopy
Delphi
function WStrCopy(Dest: PWideChar; const Source: PWideChar): PWideChar;
C++
extern DELPHI_PACKAGE System::WideChar * __fastcall WStrCopy(System::WideChar * Dest, const System::WideChar * Source);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.WideStrUtils.pas System.WideStrUtils.hpp |
System.WideStrUtils | System.WideStrUtils |
説明
PWideChar を別の PWideChar にコピーします。
WStrCopy を使用して Source を Dest にコピーします。WStrCopy は Dest を返します。
WStrCopy では長さがチェックされません。コピー先のバッファには少なくとも WStrLen(Source) + 1 文字の領域が必要です。
長さをチェックするには、WStrLCopy 関数を使用します。