[]
Returns an IRange representing the merged range containing the specified cell. If the specified cell isn't in a merged range, this property returns the specified cell.
IRange MergeArea { get; }
ReadOnly Property MergeArea As IRange
worksheet.Range["A1:B2"].Merge();
IRange mergeArea = worksheet.Range["A1"].MergeArea;
string address = mergeArea.Address;