int charSize = textRuns.size();
//StringBuffer lineBuffer = new StringBuffer();
for(int y = 0; y < charSize; y++)
{
ChpxNode charNode = (ChpxNode)textRuns.get(y);
int istd = Utils.convertBytesToShort(node.getPapx(), 0);
StyleDescription sd = _styleSheet.getStyleDescription(istd);
CHP chp = (CHP)StyleSheet.uncompressProperty(charNode.getChpx(), sd.getCHP(), _styleSheet);
//get Font info
//FontMetrics metrics = getFontMetrics(chp, context);
int height = 10;//metrics.getHeight();
maxHeight = Math.max(maxHeight, height);
int charStart = Math.max(parStart, charNode.getStart());
int charEnd = Math.min(parEnd, charNode.getEnd());
ArrayList<PropertyNode> text = findProperties(charStart, charEnd, _text.root);
int textSize = text.size();
StringBuffer buf = new StringBuffer();