Documentation
A wxprintbitmap object contains the image content that is used by a wxprintbitmapitem object when a page is output during printing. The bitmap can be associated with either the wxprintout object, the wxprintpagetemplate object, or the wxprintpage object. The choice is dependent on whether the item to be printed is the same throughout the printout, the same on every template, or is specific to a given page.
| Property | Type | Description |
|---|---|---|
| _ | type(*) | This property is provided for use by the user to attach any object of any type to the type in which this property is provided. |
| __ | type(*) | This property is provided for use by the user to attach any object of any type to the type in which this property is provided. It has the additional feature of being marked with the resolve keyword, so that object resolution can continue down this property. |
| bitmap | wxbitmap | The bitmap for the wxprintbitmap object. |
| container | type(wxprintdatacontainer) | Specifies the object that contains the ring of which the wxprintbitmap object is a member. This will be either a printout, a template, or a page. |
| name | string | The name of the wxprintbitmap object. |
| next | wxprintbitmap | Specifies the next wxprintbitmap object in the ring of printbitmaps associated either with a printout, template, or page. |
| type | type | Specifies the wxprintbitmap type object. |
Sets the name of the wxprintbitmap object. The wxprintbitmap object itself is returned, to allow multiple setting methods to be put into one expression.
| Parameter | Default value | Type name | Description | |||
|---|---|---|---|---|---|---|
| name | None | string |
The new name for the printbitmap object.
|
| Parameter | Default value | Type name | Description |
|---|---|---|---|
| next | None | wxprintbitmap |
Calling the method with the value .nul sets a printbitmap
to be the last one in the ring (the one before
container.firstbitmap) and passing any other printbitmap as the
argument puts the target printbitmap immediately before the one
specified as the parameter.
|


![[Note]](images/note.png)

