is it possible to have different kind of results when declaring property in delphi class?
Example:
property month: string read monthGet(
string) write monthSet(
integer);
In the example, I want, with the property month, that when I : READ, I get a string; SET, I set an integer;