Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TChart を印刷するにはどうすればよいですか?
TChart を表示すると、画面に TButton があります。
TButton をクリックすると、Windows プリンタ ダイアログが表示され、選択したプリンタに TChart が印刷されます。
Delphi 7を使用してそれを行うにはどうすればよいですか?
ありがとう。
これはとても簡単です:
procedure TForm1.Button1Click(Sender: TObject); begin with TPrintDialog.Create(nil) do try if Execute then Chart1.Print; finally Free; end; end;