System.Rtti.TRttiOrdinalType.OrdType
Delphi
property OrdType: TOrdType read GetOrdType;
C++
__property System::Typinfo::TOrdType OrdType = {read=GetOrdType, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.Rtti.pas System.Rtti.hpp |
System.Rtti | TRttiOrdinalType |
Description
Specifies the actual ordinal type.
Use OrdType to obtain a TOrdType enumeration whose value describes the actual reflected ordinal type. The possible values of OrdType are listed in the following table.
Value | Meaning |
---|---|
otSByte |
Identifies a signed byte. |
otUByte |
Identifies an unsigned byte. |
otSWord |
Identifies a signed word. |
otUWord |
Identifies an unsigned word. |
otSLong |
Identifies a signed long (Integer). |
otULong |
Identifies an unsigned long (Cardinal). |