diff --git a/public/README.md b/public/README.md deleted file mode 100644 index 557839f..0000000 --- a/public/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# Public - diff --git a/public/convertfrom-exceldata.md b/public/convertfrom-exceldata.md deleted file mode 100644 index b85ef3e..0000000 --- a/public/convertfrom-exceldata.md +++ /dev/null @@ -1,157 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# ConvertFrom-ExcelData - -## SYNOPSIS - -Reads data from a sheet, and for each row, calls a custom scriptblock with a list of property names and the row of data. - -## SYNTAX - -```text -ConvertFrom-ExcelData [-Path] [[-ScriptBlock] ] [[-WorksheetName] ] - [[-HeaderRow] ] [[-Header] ] [-NoHeader] [-DataOnly] [] -``` - -## DESCRIPTION - -## EXAMPLES - -### EXAMPLE 1 - -```text -ConvertFrom-ExcelData .\testSQLGen.xlsx { -``` - -param\($propertyNames, $record\) - -```text -$reportRecord = @() -foreach ($pn in $propertyNames) { - $reportRecord += "{0}: {1}" -f $pn, $record.$pn -} -$reportRecord +="" -$reportRecord -join "\`r\`n" -``` - -} - -First: John Last: Doe The Zip: 12345 .... - -## PARAMETERS - -### -Path - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: FullName - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) -Accept wildcard characters: False -``` - -### -ScriptBlock - -```yaml -Type: ScriptBlock -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WorksheetName - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: Sheet - -Required: False -Position: 3 -Default value: 1 -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -HeaderRow - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 4 -Default value: 1 -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Header - -```yaml -Type: String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: 5 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -NoHeader - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DataOnly - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -## OUTPUTS - -## NOTES - -## RELATED LINKS - diff --git a/public/convertto-excelxlsx.md b/public/convertto-excelxlsx.md deleted file mode 100644 index f7c1571..0000000 --- a/public/convertto-excelxlsx.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# ConvertTo-ExcelXlsx - -## SYNOPSIS - -Converts an Excel xls to a xlsx using -ComObject - -## SYNTAX - -```text -ConvertTo-ExcelXlsx [-Path] [-Force] [] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -Path - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Force - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -## OUTPUTS - -## NOTES - -## RELATED LINKS - diff --git a/public/get-excelcolumnname.md b/public/get-excelcolumnname.md deleted file mode 100644 index 352ef39..0000000 --- a/public/get-excelcolumnname.md +++ /dev/null @@ -1,59 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Get-ExcelColumnName - -## SYNOPSIS - -## SYNTAX - -```text -Get-ExcelColumnName [[-ColumnNumber] ] [] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -ColumnNumber - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### System.Object - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/get-htmltable.md b/public/get-htmltable.md deleted file mode 100644 index d27e1e6..0000000 --- a/public/get-htmltable.md +++ /dev/null @@ -1,116 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Get-HtmlTable - -## SYNOPSIS - -## SYNTAX - -```text -Get-HtmlTable [-Url] [[-TableIndex] ] [[-Header] ] [[-FirstDataRow] ] - [-UseDefaultCredentials] [] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -FirstDataRow - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Header - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UseDefaultCredentials - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -TableIndex - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Url - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/get-range.md b/public/get-range.md deleted file mode 100644 index 94b3dbc..0000000 --- a/public/get-range.md +++ /dev/null @@ -1,83 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Get-Range - -## SYNOPSIS - -## SYNTAX - -```text -Get-Range [[-Start] ] [[-Stop] ] [[-Step] ] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -start - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Step - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -stop - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/get-xyrange.md b/public/get-xyrange.md deleted file mode 100644 index 242e5d2..0000000 --- a/public/get-xyrange.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Get-XYRange - -## SYNOPSIS - -## SYNTAX - -```text -Get-XYRange [[-TargetData] ] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -TargetData - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/import-html.md b/public/import-html.md deleted file mode 100644 index 94d5c18..0000000 --- a/public/import-html.md +++ /dev/null @@ -1,116 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Import-Html - -## SYNOPSIS - -## SYNTAX - -```text -Import-Html [[-Url] ] [[-Index] ] [[-Header] ] [[-FirstDataRow] ] - [-UseDefaultCredentials] [] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -FirstDataRow - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Header - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UseDefaultCredentials - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Index - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Url - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/import-ups.md b/public/import-ups.md deleted file mode 100644 index 3b14f99..0000000 --- a/public/import-ups.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Import-UPS - -## SYNOPSIS - -## SYNTAX - -```text -Import-UPS [[-TrackingNumber] ] [-UseDefaultCredentials] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -TrackingNumber - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UseDefaultCredentials - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/import-usps.md b/public/import-usps.md deleted file mode 100644 index e5e033e..0000000 --- a/public/import-usps.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Import-USPS - -## SYNOPSIS - -## SYNTAX - -```text -Import-USPS [[-TrackingNumber] ] [-UseDefaultCredentials] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -TrackingNumber - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UseDefaultCredentials - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/invoke-sum.md b/public/invoke-sum.md deleted file mode 100644 index 040916d..0000000 --- a/public/invoke-sum.md +++ /dev/null @@ -1,83 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: 'https://github.com/dfinke/ImportExcel' -schema: 2.0.0 ---- - -# Invoke-Sum - -## SYNOPSIS - -## SYNTAX - -```text -Invoke-Sum [[-Data] ] [[-Dimension] ] [[-Measure] ] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -Data - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Dimension - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Measure - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/new-excelstyle.md b/public/new-excelstyle.md deleted file mode 100644 index 17272ae..0000000 --- a/public/new-excelstyle.md +++ /dev/null @@ -1,535 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# New-ExcelStyle - -## SYNOPSIS - -## SYNTAX - -```text -New-ExcelStyle [[-Range] ] [[-NumberFormat] ] [[-BorderAround] ] - [[-BorderColor] ] [[-BorderBottom] ] [[-BorderTop] ] - [[-BorderLeft] ] [[-BorderRight] ] [[-FontColor] ] - [[-Value] ] [[-Formula] ] [-ArrayFormula] [-ResetFont] [-Bold] [-Italic] [-Underline] - [[-UnderLineType] ] [-StrikeThru] [[-FontShift] ] - [[-FontName] ] [[-FontSize] ] [[-BackgroundColor] ] - [[-BackgroundPattern] ] [[-PatternColor] ] [-WrapText] - [[-HorizontalAlignment] ] [[-VerticalAlignment] ] - [[-TextRotation] ] [-AutoSize] [[-Width] ] [[-Height] ] [-Hidden] [-Locked] [-Merge] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -ArrayFormula - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AutoSize - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: AutoFit - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BackgroundColor - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 15 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BackgroundPattern - -```yaml -Type: ExcelFillStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Solid, DarkGray, MediumGray, LightGray, Gray125, Gray0625, DarkVertical, DarkHorizontal, DarkDown, DarkUp, DarkGrid, DarkTrellis, LightVertical, LightHorizontal, LightDown, LightUp, LightGrid, LightTrellis - -Required: False -Position: 16 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Bold - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BorderAround - -```yaml -Type: ExcelBorderStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Hair, Dotted, DashDot, Thin, DashDotDot, Dashed, MediumDashDotDot, MediumDashed, MediumDashDot, Thick, Medium, Double - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BorderBottom - -```yaml -Type: ExcelBorderStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Hair, Dotted, DashDot, Thin, DashDotDot, Dashed, MediumDashDotDot, MediumDashed, MediumDashDot, Thick, Medium, Double - -Required: False -Position: 4 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BorderColor - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 3 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BorderLeft - -```yaml -Type: ExcelBorderStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Hair, Dotted, DashDot, Thin, DashDotDot, Dashed, MediumDashDotDot, MediumDashed, MediumDashDot, Thick, Medium, Double - -Required: False -Position: 6 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BorderRight - -```yaml -Type: ExcelBorderStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Hair, Dotted, DashDot, Thin, DashDotDot, Dashed, MediumDashDotDot, MediumDashed, MediumDashDot, Thick, Medium, Double - -Required: False -Position: 7 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BorderTop - -```yaml -Type: ExcelBorderStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Hair, Dotted, DashDot, Thin, DashDotDot, Dashed, MediumDashDotDot, MediumDashed, MediumDashDot, Thick, Medium, Double - -Required: False -Position: 5 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -FontColor - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: ForegroundColor - -Required: False -Position: 8 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -FontName - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 13 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -FontShift - -```yaml -Type: ExcelVerticalAlignmentFont -Parameter Sets: (All) -Aliases: -Accepted values: None, Baseline, Subscript, Superscript - -Required: False -Position: 12 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -FontSize - -```yaml -Type: Single -Parameter Sets: (All) -Aliases: - -Required: False -Position: 14 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Formula - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 10 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Height - -```yaml -Type: Single -Parameter Sets: (All) -Aliases: - -Required: False -Position: 22 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Hidden - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -HorizontalAlignment - -```yaml -Type: ExcelHorizontalAlignment -Parameter Sets: (All) -Aliases: -Accepted values: General, Left, Center, CenterContinuous, Right, Fill, Distributed, Justify - -Required: False -Position: 18 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Italic - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Locked - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Merge - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -NumberFormat - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: NFormat - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PatternColor - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: PatternColour - -Required: False -Position: 17 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Range - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: Address - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResetFont - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -StrikeThru - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -TextRotation - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: - -Required: False -Position: 20 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UnderLineType - -```yaml -Type: ExcelUnderLineType -Parameter Sets: (All) -Aliases: -Accepted values: None, Single, Double, SingleAccounting, DoubleAccounting - -Required: False -Position: 11 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Underline - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Value - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 9 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -VerticalAlignment - -```yaml -Type: ExcelVerticalAlignment -Parameter Sets: (All) -Aliases: -Accepted values: Top, Center, Bottom, Distributed, Justify - -Required: False -Position: 19 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Width - -```yaml -Type: Single -Parameter Sets: (All) -Aliases: - -Required: False -Position: 21 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WrapText - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/new-plot.md b/public/new-plot.md deleted file mode 100644 index 0796339..0000000 --- a/public/new-plot.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# New-Plot - -## SYNOPSIS - -## SYNTAX - -```text -New-Plot -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/new-psitem.md b/public/new-psitem.md deleted file mode 100644 index 88a461f..0000000 --- a/public/new-psitem.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# New-PSItem - -## SYNOPSIS - -## SYNTAX - -```text -New-PSItem -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/set-cellstyle.md b/public/set-cellstyle.md deleted file mode 100644 index e4fbb50..0000000 --- a/public/set-cellstyle.md +++ /dev/null @@ -1,113 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# Set-CellStyle - -## SYNOPSIS - -## SYNTAX - -```text -Set-CellStyle [[-Worksheet] ] [[-Row] ] [[-LastColumn] ] [[-Pattern] ] - [[-Color] ] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -Color - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 4 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -LastColumn - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Pattern - -```yaml -Type: ExcelFillStyle -Parameter Sets: (All) -Aliases: -Accepted values: None, Solid, DarkGray, MediumGray, LightGray, Gray125, Gray0625, DarkVertical, DarkHorizontal, DarkDown, DarkUp, DarkGrid, DarkTrellis, LightVertical, LightHorizontal, LightDown, LightUp, LightGrid, LightTrellis - -Required: False -Position: 3 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Row - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Worksheet - -```yaml -Type: Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS - diff --git a/public/set-worksheetprotection.md b/public/set-worksheetprotection.md deleted file mode 100644 index f8340f3..0000000 --- a/public/set-worksheetprotection.md +++ /dev/null @@ -1,329 +0,0 @@ ---- -external help file: ImportExcel-help.xml -Module Name: ImportExcel -online version: null -schema: 2.0.0 ---- - -# Set-WorksheetProtection - -## SYNOPSIS - -## SYNTAX - -```text -Set-WorksheetProtection [-Worksheet] [-IsProtected] [-AllowAll] [-BlockSelectLockedCells] - [-BlockSelectUnlockedCells] [-AllowFormatCells] [-AllowFormatColumns] [-AllowFormatRows] [-AllowInsertColumns] - [-AllowInsertRows] [-AllowInsertHyperlinks] [-AllowDeleteColumns] [-AllowDeleteRows] [-AllowSort] - [-AllowAutoFilter] [-AllowPivotTables] [-BlockEditObject] [-BlockEditScenarios] [[-LockAddress] ] - [[-UnLockAddress] ] [] -``` - -## DESCRIPTION - -## EXAMPLES - -### Example 1 - -```text -PS C:\> {{ Add example code here }} -``` - -## PARAMETERS - -### -AllowAll - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowAutoFilter - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowDeleteColumns - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowDeleteRows - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowFormatCells - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowFormatColumns - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowFormatRows - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowInsertColumns - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowInsertHyperlinks - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowInsertRows - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowPivotTables - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -AllowSort - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BlockEditObject - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BlockEditScenarios - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BlockSelectLockedCells - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -BlockSelectUnlockedCells - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -IsProtected - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -LockAddress - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -UnLockAddress - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Worksheet - -```yaml -Type: ExcelWorksheet -Parameter Sets: (All) -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### None - -## OUTPUTS - -### System.Object - -## NOTES - -## RELATED LINKS -