I am converting VBA and excel/OLE code into c# with spreadsheetgear. I got stuck in Range.SpecialCells method. I am unable to found out replace for it in c# and spreadsheetgear.
In VBA Range.SpecialCells is used as:
SpecialCells(xlCellTypeLastCell, ((long)xlTextValues))
SpecialCells(xlCellTypeConstants, ((long)xlTextValues + (long)xlNumbers + (long)xlErrors + (long)xlLogical))
SpecialCells(xlCellTypeFormulas, ((long)xlTextValues + (long)xlNumbers + (long)xlErrors + (long)xlLogical))
Thoughts?