THPDFPage.ClosePathStroke 메서드

 

THPDFPage.ClosePathStroke

THPDFPage

 

맨 위  이전  다음

Close and stroke the path.

 

Delphi 구문:

procedure ClosePathStroke;

 

C++ 구문:

void __fastcall ClosePathStroke( void );

 

설명

Path를 close하고 stroke하려면 ClosePathStroke method를 호출하십시오. 이 method는 ClosePath, Stroke 호출 sequence와 같은 효과를 가집니다

 

Code Example

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