Aspose.Cells.Examples.CSharp.Articles.SmartMarkerCallBack.Process C# (CSharp) Method

Process() public method

public Process ( int sheetIndex, int rowIndex, int colIndex, String tableName, String columnName ) : void
sheetIndex int
rowIndex int
colIndex int
tableName String
columnName String
return void
        public void Process(int sheetIndex, int rowIndex, int colIndex, String tableName, String columnName) {
            Console.WriteLine("Processing Cell: " + workbook.Worksheets[sheetIndex].Name + "!" + CellsHelper.CellIndexToName(rowIndex, colIndex));
            Console.WriteLine("Processing Marker: " + tableName + "." + columnName);
        }
    }