コンポーネントがタイプであるTMachine
かTLabel
どうかをチェックしようとしています。
これOR
をif Components[I] is (TMachine) or (TLabel) then
修正する方法はありますか?
procedure TfDeptLayout.FormClose(Sender: TObject; var Action: TCloseAction);
var
I: Integer;
begin
for I := ComponentCount -1 downto 0 do
begin
if Components[I] is (TMachine) or (TLabel) then
if Components[I].Name <> Label2.Name then
if Components[I].Name <> label3.Name then
components[I].Free;
end;
end;