mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
16 lines
337 B
PowerShell
16 lines
337 B
PowerShell
function Get-ExcelSheetDimensionAddress {
|
|
<#
|
|
.SYNOPSIS
|
|
Get the Excel address of the dimension of a sheet
|
|
|
|
.EXAMPLE
|
|
Get-ExcelSheetDimensionAddress $excel.Sheet1
|
|
#>
|
|
param(
|
|
[Parameter(Mandatory)]
|
|
[OfficeOpenXml.ExcelWorksheet]$Worksheet
|
|
)
|
|
|
|
$Worksheet.Dimension.Address
|
|
}
|