Creates an anchor within the specified cell. An anchor represents the position of a floating (non-cell data) object within a spreadsheet.

 public Anchor CreateAnchor(int percentX, int percentY)
Public Function CreateAnchor(ByVal percentX As Integer, ByVal percentY As Integer) As Anchor

The X offset from the cell's left side as a percentage of the cell's width. This value must be between 0 and 100.

The Y offset from the top of the cell as a percentage of the cell's height. This value must be between 0 and 100.

An anchor for this cell.

Anchor anch = cellB7.CreateAnchor(30, 50);
Dim anch As Anchor = cellB7.CreateAnchor(30, 50)