System.SysUtils.TEncoding.EncodingName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property EncodingName: string read GetEncodingName;

C++

__property System::UnicodeString EncodingName = {read=GetEncodingName};

Properties

Type Visibility Source Unit Parent
property public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TEncoding

Description

Contains the name of the encoding.

By default, EncodingName will return <empty string>, which indicates that a name is not supported/available/applicable. Descendants can override the EncodingName access function GetEncodingName to return the actual name, if applicable. The name is returned as reported by the operating system if available; otherwise, the source encoding name is returned.

See Also