mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-22 11:13:32 +00:00
fixes to casing, and some basic functions changed to advanced
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
Function Set-ExcelColumn {
|
||||
[cmdletbinding()]
|
||||
function Set-ExcelColumn {
|
||||
[CmdletBinding()]
|
||||
[Alias("Set-Column")]
|
||||
[OutputType([OfficeOpenXml.ExcelColumn],[String])]
|
||||
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '',Justification='Does not change system state')]
|
||||
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingfunctions', '',Justification='Does not change system state')]
|
||||
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '', Justification="Variables created for script block which may be passed as a parameter, but not used in the script")]
|
||||
Param (
|
||||
param(
|
||||
[Parameter(ParameterSetName="Package",Mandatory=$true)]
|
||||
[OfficeOpenXml.ExcelPackage]$ExcelPackage,
|
||||
[Parameter(ParameterSetName="Package")]
|
||||
|
||||
Reference in New Issue
Block a user