ec_label.pas 464 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. unit ec_label;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ec_labelbase;
  6. type
  7. { TECLabelFrame }
  8. TECLabelFrame = class(TECLabelBaseFrame)
  9. private
  10. public
  11. function GetCommandCode: Integer; override;
  12. end;
  13. var
  14. ECLabelFrame: TECLabelFrame;
  15. implementation
  16. uses constants;
  17. {$R *.lfm}
  18. { TECLabelFrame }
  19. function TECLabelFrame.GetCommandCode: Integer;
  20. begin
  21. Result := LABEL_EC_CODE;
  22. end;
  23. end.