mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
13 lines
341 B
PowerShell
13 lines
341 B
PowerShell
function Set-CellStyle {
|
|
param(
|
|
$WorkSheet,
|
|
$Row,
|
|
$LastColumn,
|
|
[OfficeOpenXml.Style.ExcelFillStyle]$Pattern,
|
|
[System.Drawing.Color]$Color
|
|
)
|
|
|
|
$t=$WorkSheet.Cells["A$($Row):$($LastColumn)$($Row)"]
|
|
$t.Style.Fill.PatternType=$Pattern
|
|
$t.Style.Fill.BackgroundColor.SetColor($Color)
|
|
} |