createAnchor method

CellAnchor createAnchor(
  1. int x,
  2. int y
)

Create a new CellAnchor at the specified x and y coordinates.

Implementation

CellAnchor createAnchor(int x, int y) {
  return lines[y].createAnchor(x);
}