Doc FillRect Function. Adds a painted rectangle to the current page. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Adds a painted rectangle to the current page.

 

   
Syntax  

[C#]
int FillRect()
int FillRect(double radiusX, double radiusY)

[Visual Basic]
Function FillRect() As Integer
Function FillRect(radiusX As Double, radiusY As Double) As Integer

 

   

Params
 
Name Description
radiusX The horizontal radius to use for rounded corners.
radiusY The vertical radius to use for rounded corners.
return The Object ID of the newly added Graphic Object.

 

   

Notes
 

Adds a painted rectangle to the current page. The rectangle location and size is determined by the current rectangle, the fill color is determined by the current color and any options are determined by the current options.

By specifying values for the horizontal and vertical radius parameters you can draw rectangles with rounded corners. The values refer to the radii of the ellipse used to draw the corners.

By setting the horizontal radius parameter to half the width of the rect and the vertical radius parameter to half the height of the rect you can draw filled ovals and circles.

The FillRect function returns the Object ID of the newly added Graphic Object.

 

   

Example
 

The following code adds a blue filled rectangle to a document. The frame is inset from the edges of the document by 200 points horizontally and 100 points vertically.

[C#]
Doc theDoc = new Doc();
theDoc.Rect.Inset(200, 100);
theDoc.Color.Blue = 255;
theDoc.FillRect();
theDoc.Save(Server.MapPath("docfillrect.pdf"));
theDoc.Clear();

[Visual Basic]
Dim theDoc As Doc = New Doc()
theDoc.Rect.Inset(200, 100)
theDoc.Color.Blue = 255
theDoc.FillRect()
theDoc.Save(Server.MapPath("docfillrect.pdf"))
theDoc.Clear()


docfillrect.pdf