BBjFormElement
Description
In BBj 4.0 and higher, the BBjFormElement is the base class for objects placed on a BBjFormPage.
Creation
BBjAPI > BBjPrinter > BBjForm > BBjFormPage > BBjFormElement
The BBjFormElement is a base class and cannot be directly constructed.
Methods of BBjFormElement
Return Value |
Method |
---|---|
void |
add(BBjFormElement object) |
double |
|
double |
|
point |
|
dimension |
|
double |
|
double |
|
double |
|
double |
|
int |
|
double |
|
getPage() |
|
point |
|
double |
|
dimension |
getSize() |
double |
|
int |
|
double |
getWidth() |
double |
getX() |
double |
getY() |
int |
isChild() |
int |
|
int |
|
void |
remove(BBjFormElement object) |
void |
setBottomMargin(double margin) |
void |
setHeight(double height) |
void |
setHorizontalFill(int fill) |
void |
setHorizontalSticky(int sticky) |
void |
setLeftMargin(double margin) |
void |
setPosition(double x,double y) |
void |
setPosition(Point point) |
void |
setRelative(int relative) |
void |
setRightMargin(double margin) |
void |
setSize(double width,double height) |
void |
setSize(dimension size) |
void |
setTopMargin(double margin) |
void |
setVerticalFill(int fill) |
void |
setVerticalSticky(int sticky) |
void |
setWidth(double width) |
Remarks
All BBjFormElement coordinates are specified in points or units specified at page creation. A point is approximately 1/72 inch or 1/3 millimeter.
Constants
CAP_BUTT |
Ends unclosed subpaths and dash segments with no added decoration |
CAP_ROUND |
Ends unclosed subpaths and dash segments with a round decoration that has a radius equal to half of the width of the pen |
CAP_SQUARE |
Ends unclosed subpaths and dash segments with a square projection that extends beyond the end of the segment to a distance equal to half of the line width. This is the default. |
JOIN_BEVEL |
Joins path segments by connecting the outer corners of their wide outlines with a straight segment. |
JOIN_MITER |
Joins path segments by extending their outside edges until they meet. This is the default. |
JOIN_ROUND |
Joins path segments by rounding off the corner at a radius of half the line width. |
STICKY_LEFT |
Sets the horizontal value to position the object to the left within its parent container. |
STICKY_RIGHT |
Sets the horizontal value to position the object to the right within its parent container. |
STICKY_TOP |
Sets the vertical value to position the object to the top within its parent container. |
STICKY_BOTTOM |
Sets the vertical value to position the object to the bottom within its parent container. |
STICKY_CENTER |
Sets the horizontal or vertical value to position the object to the center within its parent container. |
STICKY_NONE |
Voids a previously set value. |
Example
|
See Also
BBj Object Creation and Assignment
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.