THPDFPage.SetRGBStrokeColor

THPDFPage

 

Haut  Précédent  Suivant

Sets stroke color.

 

Syntaxe Delphi :

procedure SetRGBStrokeColor ( Value: TColor );

 

Syntaxe C++ :

void __fastcall SetRGBStrokeColor ( Graphics::TColor Value );

 

Description:

Appelez SetRGBStrokeColor pour définir la valeur de la couleur de tracé

 

Exemple de code

program Rectangle;
{$APPTYPE CONSOLE}
uses
    SysUtils, Graphics, Classes, HPDFDoc;

var
    HPDF: THotPDF;

begin
    HPDF := THotPDF.Create(nil);
    try
        HPDF.AutoLaunch := true;                                 // PDF file will be shown automatically
        HPDF.FileName := '\Rectangle.pdf';                   // Set PDF filename
        HPDF.BeginDoc;                                               // Create PDF file

        HPDF.CurrentPage.SetRGBStrokeColor ( clRed );   // Set stroke color
        HPDF.CurrentPage.SetRGBFillColor ( clYellow );     // Set fill color

        HPDF.CurrentPage.Rectangle( 10, 10, 100, 100 ); // Draw rectangle
        HPDF.CurrentPage.FillAndStroke;                       // and fill and stroke

        HPDF.EndDoc;                                                  // Close PDF file
    finally
        HPDF.Free;
    end;
end.

 

Voir aussi: SetGrayColor, SetGrayFillColor, SetGrayStrokeColor, SetRGBColor, SetRGBFillColor.