Using the RTTI system in Delphi 2010, is there any way to find out if a property is a TDateTime? It's currently treating it as a double whenever I call back asVariant and also if I check the property type. Is this due to the fact it can only see the base type? (TDateTime = double)
How can I distinguish TDateTime properties from Double properties with RTTI?
2.9k Views Asked by Barry At
2
There are 2 best solutions below
1

Key point here while defining type is the type directive. These two definitions are different:
Type
TDateTime = Double; // here p.PropertyType.Name returns Double
but
Type
TDateTime = type Double; // here p.PropertyType.Name returns TDateTime
or
Type
u8 = type Byte; // here p.PropertyType.Name returns u8
but
Type
u8 = Byte; // here p.PropertyType.Name returns Byte !
Try checking the
Name
property of theTRttiProperty.PropertyType
I don't have Delphi 2010, but this works in XE.
this code returns