본문 바로가기
Application/Delphi Lecture

전체 컨트롤 속성 변경

by 현이빈이 2008. 7. 24.
반응형
 for i := 0 To ComponentCount - 1 do
  begin
    if Components[i] is TLabel Then
       TLabel(Components[i]).Visible := False;
  end;
반응형