Scroll bar not showing up in JPEG image

Trying to create a JPEG image for web application. Scroll bar control for ListArea / RecordNode not showing up in the image.
Thanks in advance.
ListArea myListArea = new ListArea();
myListArea.initialize();
myListArea.setVertical(true);
myListArea.setScrollBarOnRight(true);
myListArea.setHeight(50);
myListArea.setFirstVisibleIndex(0);

for (int i = 0; i < 10; i++) {//Added 10 JgoText items
myListArea.addItem(makeListItem(i), null, null, null);
}
doc.getFirstLayer().addObjectAtTail(myListArea);

Yes, that’s right – JGoControls, which “host” JComponents (Swing) or Controls (SWT) aren’t rendered when drawn to an image or to the printer.