Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: Wie weist man einer Object Procedure eine Variable zu
7. Dez 2014, 23:28
Delphi-Quellcode:
TFoo = class
procedure Bar(printInteractionController: Pointer; completed: Pointer; error: Pointer);
end;
procedure FooBar;
var
LFoo : TFoo;
print : TUIPrintInteractionControllerCompletionHandler;
begin
LFoo := TFoo.Create;
print := LFoo.Bar;
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|