3
votes
2answers
244 views
Why do I get “type has no typeinfo” error with an enum type
I have declared the following enum type in which I want the first member to have the ordinal value of 1 (one) rather than the usual 0 (zero):
type
TMyEnum = (
…
3
votes
3answers
464 views
How to know what type is a var?
TypeInfo(Type) returns the info about the specified type, is there any way to know the typeinfo of a var?
var
S: string;
Instance: IObjectType;
Obj: TDBGrid;
Info: PTypeIn …
1
vote
1answer
39 views
Get TypeInfo in static constructor.
Is there any way to get the equivalent of GetType within a static constructor?
I want to iterate through the available properties of the type within the static constructor but Get …
1
vote
3answers
297 views
String representation of the content type of a Variant ?
Hi, first apologies for my english, I hope it make sense what I`ve wrote here. Now to my problem.
How can I get the string representation of the content type of a Variant using Ty …
