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;
constructor Create(UseBOM: Boolean); overload;
constructor Create(CodePage: Integer; UseBOM: Boolean); overload;
constructor Create(CodePage, MBToWCharFlags, WCharToMBFlags: Integer; UseBOM: Boolean); overload;

C++

__fastcall virtual TMBCSEncoding()/* overload */;
__fastcall virtual TMBCSEncoding(int CodePage)/* overload */;
__fastcall virtual TMBCSEncoding(int CodePage, int MBToWCharFlags, int WCharToMBFlags)/* overload */;
__fastcall TMBCSEncoding(bool UseBOM)/* overload */;
__fastcall TMBCSEncoding(int CodePage, bool UseBOM)/* overload */;
__fastcall TMBCSEncoding(int CodePage, int MBToWCharFlags, int WCharToMBFlags, bool UseBOM)/* 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