ContForm.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit ContForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, ExtCtrls, OleCtnrs;
  6. type
  7.   TForm1 = class(TForm)
  8.     OleContainer1: TOleContainer;
  9.     Panel1: TPanel;
  10.     Button1: TButton;
  11.     Button3: TButton;
  12.     procedure Button1Click(Sender: TObject);
  13.     procedure Button3Click(Sender: TObject);
  14.     procedure FormCreate(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   Form1: TForm1;
  22. implementation
  23. {$R *.DFM}
  24. procedure TForm1.Button1Click(Sender: TObject);
  25. var
  26.   Document: Variant;
  27. begin
  28.   // activates if not running
  29.   if not (OleContainer1.State = osRunning) then
  30.     OleContainer1.Run;
  31.   // get the document
  32.   Document := OleContainer1.OleObject;
  33.   // first paragraph to bold
  34.   Document.Paragraphs.Item(1).Range.Bold := 1;
  35. end;
  36. procedure TForm1.Button3Click(Sender: TObject);
  37. var
  38.   Document, Paragraph: Variant;
  39. begin
  40.   // activates if not running
  41.   if not (OleContainer1.State = osRunning) then
  42.     OleContainer1.Run;
  43.   // get the document
  44.   Document := OleContainer1.OleObject;
  45.   // add paragraphs, getting the last one
  46.   Document.Paragraphs.Add;
  47.   Paragraph := Document.Paragraphs.Add;
  48.   // add text to the paragraph, using random font size
  49.   Paragraph.Range.Font.Size := 10 + Random (20);
  50.   Paragraph.Range.Text := 'New text (' +
  51.     IntToStr (Paragraph.Range.Font.Size) + ')'#13;
  52. end;
  53. procedure TForm1.FormCreate(Sender: TObject);
  54. begin
  55.   Randomize;
  56. end;
  57. end.