Einzelnen Beitrag anzeigen

Benutzerbild von p80286
p80286

Registriert seit: 28. Apr 2008
Ort: Stolberg (Rhl)
6.659 Beiträge
 
FreePascal / Lazarus
 
#12

Re: Rahmen in der Kopfzeile von Word zeichnen (OLE)

  Alt 25. Jul 2008, 17:09
Hallo Little_budda,

Du warst eine ganze Ecke schneller als ich. Hier meine Version (index als Hex-Darstellung).
Delphi-Quellcode:
  msword.Selection.ParagraphFormat.Borders.item($FFFFFFFE).LineStyle:= 0;

  msword.Selection.ParagraphFormat.Borders.item($FFFFFFFC).LineStyle:= 0;
  msword.Selection.ParagraphFormat.Borders.item($FFFFFFFF).LineStyle:= 0;


  msword.Selection.ParagraphFormat.Borders.item($FFFFFFFD).LineStyle := 1 ;
  msword.Selection.ParagraphFormat.Borders.item($FFFFFFFD).LineWidth := 4 ;
  msword.Selection.ParagraphFormat.Borders.item($FFFFFFFD).ColorIndex := 0;

  msword.Selection.ParagraphFormat.Borders.DistanceFromTop := 1;
  msword.Selection.ParagraphFormat.Borders.DistanceFromLeft := 4 ;
  msword.Selection.ParagraphFormat.Borders.DistanceFromBottom := 1;
  msword.Selection.ParagraphFormat.Borders.DistanceFromRight := 4 ;
  msword.Selection.ParagraphFormat.Borders.Shadow := False ;


Grüße
K-H
  Mit Zitat antworten Zitat