{
graphContainer.selectCellForEvent(cell, e);
}
// Initiates a resize event in the handler
mxCellHandler handler = graphContainer.getSelectionCellsHandler().getHandler(
cell);
if (handler != null)
{
// Starts the resize at index 7 (bottom right)
handler.start(SwingUtilities.convertMouseEvent((Component) e
.getSource(), e, graphContainer.getGraphControl()),
index);
e.consume();
}
}