System.SysUtils.TNameType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TNameType = (ntContainsUnit, ntRequiresPackage, ntDcpBpiName);

C++

enum DECLSPEC_DENUM TNameType : unsigned char { ntContainsUnit, ntRequiresPackage, ntDcpBpiName };

Properties

Type Visibility Source Unit Parent
enum public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TNameType enumerates the types of names reported to TPackageInfoProc routines.

TNameType can have one of the following values.



Value Meaning

ntRequiresPackage

The passed Name argument represents a required package.

ntContainsUnit

The passed Name argument represents a contained unit.

ntDcpBpiName

The passed Name argument represents a package module.



See Also