--- foo.ps1 ---
- $filePath = Get-ChildItem foo.xls*
- $excel = New-Object -comobject Excel.Application
- $excel.Visible = $True
- $workBooks = $excel.Workbooks.Open($filePath)
- #Sheet1を取得する
- $workbooks.Worksheets | % { if ($_.Index -eq 1) { $sheet = $_; }}
- #A1の値が表示される
- $sheet.Cells.Item(1,1).Text
- #文字のColorIndexが表示される
- $sheet.Cells.Item(1,1).Font.ColorIndex
- #セルのColorIndexが表示される
- $sheet.Cells.Item(1,1).Interior.ColorIndex
- $workBooks.Close()
- $excel.Quit()
0 コメント:
コメントを投稿