On 12/07/2013 8:33, bolek lolek wrote:
Now i want to duplicate it 4 times and place different shapes on each
of them.
The whole idea of using a PdfTemplate instance, is that you can reuse
it. Why would you duplicate it???
--
Hello,
I have created PdfTemplate with some contour. Now i want to duplicate it
4 times and place different shapes on each of them. What I am trying now is:
|PdfTemplate[] oRTA= new PdfTemplate[4];
for(int i=0; i<4; i++)
{
oRTA[i] = (PdfTemplate)oTemplate.GetDuplicate(false);
}
|