Jump to content
dmitrybv

Class alias for class helper doesn't make class helper visible for compiler.

Recommended Posts

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

The helper is not in the scope because Unit1 is not in the Uses list.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×