在ListObject forloop中打印和使用Var

时间:2016-10-28 12:30:37

标签: c# vsto excel-interop listobject

我目前有这个可以访问table1的C#代码。我有一个问题,但Var listRowsValue和var lr。如何打印这些并从ListRowsValue中减去1而不将“System._ComObject”视为输出?如何调整ListObject的大小以不在计数结束时检查另一行?

var listRowsValue = xlWorkBook.Worksheets["Sheet1"].ListObjects["table1"].ListRows;

for (int CurrentRow = 0; CurrentRow < listRowsValue.Count; CurrentRow++)
{
    if (xlWorkBook.Worksheets["Sheet1"].ListObjects["table1"].Range[CurrentRow, 2].value == -1)
    {
        xlSheet.Cells[5, 5] = "YES!";
        //lr.Range.Clear();   
        var lr = listRowsValue[CurrentRow];
        Console.WriteLine("CURRENT ROW: " + lr);//Why does this not work?       

        //MoveEmUpOne();
        //How do I resize the total listRowsValue count here so it doesn't check another row at the end?
        //EXAMPLE: ListRowsValue = ListRowsValue - 1;
        //CurrentRow = CurrentRow - 1;
    }
    else
    {
         xlSheet.Cells[5, 5] = "NO!";
    }
}

我正在转换的旧VBA代码:

For CurrentRow = 1 To Tablesize
    If Lo.ListColumns("Column2").DataBodyRange(CurrentRow) = -1 Then
        Ros(CurrentRow).Range.Clear
        MoveEmUpOne Lo, CurrentRow, Tablesize
        Tablesize = Tablesize - 1 'table didn't really get smaller, but number of "real"rows decreased by 1
        CurrentRow = CurrentRow - 1 ' check this row again -- stuff from below might need cleard
    End If

1 个答案:

答案 0 :(得分:1)

VSTO的使用与常规C#libs完全不同,因为它强烈依赖于COM。

lrListRow个对象。

使用lr.Range.Text获取其中的文字。

Console.WriteLine("CURRENT ROW: " + lr.Range.Text);

请参阅Range.Text