Examples/Example14.ps1
[CmdletBinding()] param ( [System.String[]] $Format = 'Html', [System.String] $Path = '~\Desktop', [System.Management.Automation.SwitchParameter] $PassThru ) Import-Module PScribo -Force -Verbose:$false $example14 = Document -Name 'PScribo Example 14' { <# By default, tables are configured to use 100% of available width. You can override the table width, by specifying the -Width parameter on the 'Table' cmdlet. The width is always set as a percentage of available space between the left and right page margins (adjusting for indentation). The following example creates a table with its with set at 66% of the available space. #> Get-Service | Table -Columns Name,DisplayName,Status -Headers 'Name','Display Name','State' -Width 66 } $example14 | Export-Document -Path $Path -Format $Format -PassThru:$PassThru |