THPDFPage.SetGrayColor

THPDFPage

 

Arriba  Anterior  Siguiente

Sets fill and stroke colors.

 

Sintaxis Delphi:

procedure SetGrayColor ( GrayColor: Extended );

 

Sintaxis C++:

void __fastcall SetGrayColor ( Extended GrayColor);

 

Descripción:

Call SetGrayColor sets fill and stroke colors value. This function is equivalent to call two function SetGrayFillColor and SetGrayStrokeColor with same value.

Valor GrayColor de 0 (negro) a 1 (blanco)

 

Ejemplo de código

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.SetGrayColor ( 0.525 );          // Set gray 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.

 

Véase también: SetGrayFillColor, SetGrayStrokeColor, SetRGBColor, SetRGBFillColor, SetRGBStrokeColor.