Delphi で引数にクラス型?を渡す

関数に汎用性を持たせたり、動的生成したコンポーネントを探す場合に、クラス名で参照したい時がある

以下、クラス名でTComponentを探す例
(後ろから調べて最初に見つかったのを一つ返す)

  1. type  
  2.     TComponentClass = class of TComponent;  
  3.   
  4. function FindComponentClass(OwnerComponent: TComponent; FindClass: TComponentClass): TComponent;  
  5.     var I: Integer;  
  6. begin  
  7.     Result := nil;  
  8.     for I := OwnerComponent.ComponentCount - 1 downto 0 do begin  
  9.         if (OwnerComponent.Components[I] is FindClass) then begin  
  10.             Result := OwnerComponent.Components[I];  
  11.             Exit;  
  12.         end;  
  13.     end;  
  14. end;  

FindComponentClass(Self, TButton); みたいな感じで利用する

コメント