THPDFPage.ClosePathStroke Method

 

THPDFPage.ClosePathStroke

THPDFPage

 

Topo  Anterior  Seguinte

Close and stroke the path.

 

Delphi syntax:

procedure ClosePathStroke;

 

C++ syntax:

void __fastcall ClosePathStroke( void );

 

Descrição

Chame o método ClosePathStroke para fechar e traçar o caminho. Este método tem o mesmo efeito que a sequência de chamadas ClosePath, Stroke

 

Code Example

HPDF.CurrentPage.Circle( 100, 100, 75 );   // Center on 100, 100, Radius 75
HPDF.CurrentPage.Stroke;                    // Draw circle outline