FarPoint.Win.Spread.SheetView sv;
FarPoint.Win.Spread.Cell acell;
sv = fpSpread1.ActiveSheet;
sv.Cells[2, 2].Tag = "MyTag";
acell = sv.GetCellFromTag(null, "MyTag");
MessageBox.Show("The tag is in cell " + acell.Row.ToString() + " ," + acell.Column.ToString());
Dim sv As FarPoint.Win.Spread.SheetView
Dim acell As FarPoint.Win.Spread.Cell
sv = FpSpread1.ActiveSheet
sv.Cells(2, 2).Tag = "MyTag"
acell = sv.GetCellFromTag(Nothing, "MyTag")
MessageBox.Show("The tag is in cell " & acell.Row.ToString() & " ," & acell.Column.ToString())