Komórka w the worksheet,
Excel.Sheets xlsheets = wb. Prześcieradło; //Get the prześcieradło od workbook
Excel.Worksheet excelWorksheet = (Excel.Worksheet) xlsheets [(1)]; //Select the pierwszy prześcieradło
Excel.Range excelCell = (Excel.Range) excelWorksheet.get_Range ("B4: FZ4", Type.Missing); //Select pasmo komórka
Excel.Range excelCell2 = (Excel.Range) excelWorksheet.get_Range ("A5: A5", Type.Missing); //Select pojedynczy komórka
Console.WriteLine (excelCell2.Cells.Value2.ToString ()); //Print the wartość the komórka dla pojedynczy komórka wybór
System.Array myvalues = (System.Array) excelCell.Cells.Value2; //Assign ono szyk
sznurek [] strArray = ConvertToStringArray (myvalues); //Convert szyk w Smyczkowy szyk
foreach (smyczkowy str w strArray)
Console.WriteLine ("Tekst w Komórka" + str); //Loop przez the szyk the wartość w the komórka
|