|
|
|
|
|
- Lightness of black color
- Printing in HTML or RTF format
- Miscellaneous
iRoundBorder (Function) In french: iCadreArrondi Prints a border with rounded outlines at specified coordinates. Remark: The origin (0,0) is located in the upper-left corner of the sheet. It takes the physical margins of the printer into account.
Syntax
iRoundBorder(<X1> , <Y1> , <X2> , <Y2> , <Width of sides> , <Height of sides> [, <Thickness> [, <Fill> [, <Color> [, <Line> [, <Brush>]]]]])
<X1>: Real Horizontal coordinate of the upper-left corner of the border (in millimeters). This corner defines the external side of the border. Value between 0 and the page width (returned by iPageWidth). <Y1>: Real Vertical coordinate of the upper-left corner of the border (in millimeters). This corner defines the external side of the border. Value between 0 and the page height (returned by iPageHeight). <X2>: Real Horizontal coordinate of the lower-right corner of the border (in millimeters). This corner defines the external side of the border. Value between 0 and the page width (returned by iPageWidth). <Y2>: Real Vertical coordinate of the lower-right corner of the border (in millimeters). This corner defines the external side of the border. Value between 0 and the page height (returned by iPageHeight). <Width of sides>: Real Width of border sides in millimeters. Corresponds to the width of border onto which the rounding is applied. <Height of sides>: Real Height of border sides in millimeters. Corresponds to the height of border onto which the rounding is applied. <Thickness>: Optional real Thickness of border line (in picas). Default value = 1 (one Pica = 0.353 mm).
Caution: Depending on the value of this parameter, the thickness is achieved by adding several lines next to each others from the outside to the inside.
<Fill>: Optional integer (included between 1 and 200) Rate for the line color and for the background color. If this parameter is:- Equal to 0 (default value): no fill.
- Equal to 100: entirely filled with the specified color.
- Less than 100: the closer this parameter is to 0, the more the color brightens.
- Greater than 100: the closer this parameter is to 200, the more the color darkens.
<Color>: Optional integer Color used for the background and for the border. If this parameter is not specified, the color used is black. This color can correspond to: <Line>: Optional integer constant Type of line. | | iContinuous (default value) | Solid line | iDashed | Dashed line (-----) | iDotAndDash | Dot-and-dash line (-.-.) | iDotted | Dotted line (....) |
<Brush>: Optional integer constant Pattern used to fill the border. | | iCrossed | Crossed lines. | iDiagonalCrossed | Diagonal crossed lines. | iDownwardDiagonal | Descending diagonal lines. | iHorizontal | Horizontal lines. | iSolid (default value) | Entire fill. | iUpwardDiagonal | Ascending diagonal lines. | iVertical | Vertical lines. |
Remarks For the black color, the rate corresponds to a rate of gray whose values are included between 1 (white) and 100 (solid black). In this case, the values greater than 100 will be processed like the value 100. - The cursor position is not modified when the outline is drawn.
- The dotted type (iDotted) or the mixed type (iDotAndDash) combined with a thick border may produce unpleasant effects.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|