[]
Gets the active cell.
The active cell is returned as a single-cell IRange. Returns null
if the worksheet does not have a current selection.
IRange ActiveCell { get; }
ReadOnly Property ActiveCell As IRange
worksheet.Range["C3"].Activate();
IRange cell = worksheet.ActiveCell;
cell.Value = "Active";