Thema: Delphi operator is und as

Einzelnen Beitrag anzeigen

Rumpi

Registriert seit: 26. Aug 2003
Ort: Berlin
72 Beiträge
 
#10

Re: operator is und as

  Alt 18. Nov 2003, 11:37
Hi Bernd,

Zitat:
Delphi-Quellcode:
type
  IBlaBla = interface
    ['{D277B854-3DFF-4838-B8B9-A87EF5C55B1F}']
    procedure SetBla(Value: Integer);
    function GetBla : Integer;
    property Blabla : Integer read GetBla write SetBla;
  end;

  TFormA = class(Tform,IblaBla)
  public
    function GetBla: Integer;
    procedure SetBla(Value: Integer);
  end;

  TFormB = class(TForm,IblaBla)
  public
    function GetBla: Integer;
    procedure SetBla(Value: Integer);
  end;
muss da nicht in TFormA und B SetBla vor GetBla kommen so wie in IBlaBla?
mfg Rumpi No.5
  Mit Zitat antworten Zitat