We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Describe the bug It is not possible to override property set accessor
To Reproduce (See forms'BaseWinControl)
string Caption { set(string s) { _caption := s; } set(wide s) { _caption := string cast(s); } }
Expected behavior It has to be possible to override property set accessor