System.SysUtils.TMBCSEncoding.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create; overload; virtual;
constructor Create(CodePage: Integer); overload; virtual;
constructor Create(CodePage, MBToWCharFlags, WCharToMBFlags: Integer); overload; virtual;

C++

__fastcall virtual TMBCSEncoding()/* overload */;
__fastcall virtual TMBCSEncoding(int CodePage)/* overload */;
__fastcall virtual TMBCSEncoding(int CodePage, int MBToWCharFlags, int WCharToMBFlags)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TMBCSEncoding

Description

Creates a new instance of the TMBCSEncoding class.

Call Create to create a new instance of TMBCSEncoding. Create can also be called with a set of flags that control the way MBCS strings are encoded or decoded.

See Also