|
Re: [Paperclips] is possible a Print composed by a TextPrint and GridPrint [message #554086 is a reply to message #552749] |
Fri, 20 August 2010 02:08  |
Eclipse User |
|
|
|
On 08/13/2010 05:29 AM, Raffaele Gambelli wrote:
> Hi all,
>
> I would like to print a page where I have a GridPrint and above it a
> TextPrint where put some text describing a table of results
>
> Looking at API it seems to be not possible, is there some trick to do that?
>
> Thanks in advance and best regards
> Raffaele
Raffaele, you can nest the text and the GridPrint inside another GridPrint:
TextPrint text = ...
GridPrint grid = ...
GridPrint outerGrid = new GridPrint("d:g");
outerGrid.add(text);
outerGrid.add(grid);
It's turtles all the way down... :)
Hope this helps,
Matthew
|
|
|
Re: [Paperclips] is possible a Print composed by a TextPrint and GridPrint [message #600139 is a reply to message #552749] |
Fri, 20 August 2010 02:08  |
Eclipse User |
|
|
|
On 08/13/2010 05:29 AM, Raffaele Gambelli wrote:
> Hi all,
>
> I would like to print a page where I have a GridPrint and above it a
> TextPrint where put some text describing a table of results
>
> Looking at API it seems to be not possible, is there some trick to do that?
>
> Thanks in advance and best regards
> Raffaele
Raffaele, you can nest the text and the GridPrint inside another GridPrint:
TextPrint text = ...
GridPrint grid = ...
GridPrint outerGrid = new GridPrint("d:g");
outerGrid.add(text);
outerGrid.add(grid);
It's turtles all the way down... :)
Hope this helps,
Matthew
|
|
|
Powered by
FUDForum. Page generated in 0.19923 seconds