Files
ImportExcel/Public/Get-ExcelSheetDimensionAddress.ps1
2022-04-28 19:44:49 -04:00

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
}