Delphi Error – E2275 property attribute ‘label’ cannot be an empty string

Delphi Compiler Error

E2275 property attribute ‘label’ cannot be an empty string

Reason for the Error & Solution

The error is output because the label attribute for g is an empty string.

unit Problem;
interface
  type
    T0 = class
      f : integer;
      property g : integer read f write f label ;
    end;

implementation
begin
end.

    

In this solution, the label attribute has been replaced by a non-zero length string.

unit Solve;
interface
  type
    T0 = class
      f : integer;
      property g : integer read f write f label 'LabelText';
    end;

implementation
begin
end.

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Delphi Compiler Error E2313 Attribute – Known attribute cannot specify properties Reason for the Error & Solution No further information...
Delphi Compiler Error E2379 Virtual methods not allowed in record types Reason for the Error & Solution No further information...
Rodrigo , one of the long time Delphi Developer has been working on one of his personal project “Delphi IDE...