:: com :: sun :: star :: tiledrendering ::

interface XTiledRenderable

Methods' Summary
paintTile paint a tile to a system-specific window *  
Methods' Details
paintTile
void
paintTile( [in] any  Parent,
[in] long  nOutputWidth,
[in] long  nOutputHeight,
[in] long  nTilePosX,
[in] long  nTilePosY,
[in] long  nTileWidth,
[in] long  nTileHeight );

Description
paint a tile to a system-specific window *
Parameter Parent
a system-specific handle to a window.

You must check the machine ID and the process ID.
WIN32: HWND.
WIN16: HWND.
JAVA: global reference to a java.awt.Component object provided from the JNI-API.
MAC: (NSView*) pointer.

Parameter nOutputWidth
horizontal output parameter measured in pixels.
Parameter nOutputHeight
vertical output parameter measured in pixels.
Parameter nTilePosX
logical X position of the top left corner of the rendered rectangle, in TWIPs.
Parameter nTilePosY
logical Y position of the top left corner of the rendered rectangle, in TWIPs.
Parameter nTileWidth
logical width of the rendered rectangle, in TWIPs.
Parameter nTileHeight
logical height of the rendered rectangle, in TWIPs.
Since LibreOffice 5.0
Top of Page