dmitrybv 3 Posted 21 hours ago Class alias for class helper doesn't make class helper visible for compiler. Is it possible to declare class alias for class helper with making class helper visible for compiler? Example Unit1 TControlHelper = class helper for TControl function RefSelf: TControl; end; Unit2 TControlHelper = Unit1.TControlHelper; Unit3 uses Unit2; ... var MyControl: TControl; MyControl.RefSelf //Compiler error. Share this post Link to post
Wak 0 Posted 19 hours ago The helper is not in the scope because Unit1 is not in the Uses list. Share this post Link to post