|
Exemplo de RoundRect
HPDF.CurrentPage.SetLineWidth(2.0);
HPDF.CurrentPage.SetColor(0, 0, 255); // Traço azul
HPDF.CurrentPage.SetFillColor(200, 200, 255); // Preenchimento azul claro
// Desenha um retângulo com cantos arredondados
// (Esquerda: 100, Topo: 100, Direita: 300, Base: 250)
// Os cantos terão um arredondamento de elipse de 20x20
HPDF.CurrentPage.RoundRect(100, 100, 300, 250, 20, 20);
HPDF.CurrentPage.FillAndStroke;
Veja Também
|