if (_lines != null) {
ICSSStyle style = this.getCSSStyle();
if (style == null) {
style = DefaultStyle.getInstance();
}
ICSSFont font = style.getCSSFont();
Font swtFont = font.getSwtFont();
for (int i = 0; i < _lines.length; i++) {
int width = FigureUtilities.getTextWidth(_lines[i], swtFont);
if (width > longestStringWidth) {
longestStringWidth = width;
}