THPDFPage.SetGrayColor

THPDFPage

 

Горе  Предишна  Следваща

Sets fill and stroke colors.

 

Delphi syntax:

procedure SetGrayColor ( GrayColor: Extended );

 

C++ syntax:

void __fastcall SetGrayColor ( Extended GrayColor);

 

Description:

Извикването на SetGrayColor задава стойностите на fill и stroke цветовете. Тази функция е еквивалентна на извикване на двете функции SetGrayFillColor и SetGrayStrokeColor с една и съща стойност

Стойност на GrayColor от 0( черно )  до  1( бяло ).

 

Примерен код

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.

 

See also: SetGrayFillColor, SetGrayStrokeColor, SetRGBColor, SetRGBFillColor, SetRGBStrokeColor.