System.WideCharToStrVar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WideCharToStrVar(Source: PWideChar; var Dest: UnicodeString);

C++

extern DELPHI_PACKAGE void __fastcall WideCharToStrVar(WideChar * Source, UnicodeString &Dest);

Properties

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

Description

Converts WideString strings to UnicodeString.

WideCharToStrVar converts the WideString string Source into a UnicodeString, and copies the result into Dest. The source must be null-terminated.

See Also