Public/Set-WFRichTextBox.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
function Set-WFRichTextBox { <# .SYNOPSIS The Set-WFRichTextBox function allow you to manage the richtextbox control .DESCRIPTION The Set-WFRichTextBox function allow you to manage the richtextbox control .PARAMETER RichTextBox Specifies the RichTextBox Control to use .PARAMETER ScrollToCaret Specifies that the RichTextBox will scroll to the end. .EXAMPLE PS C:\> Set-WFRichTextBox -PipelineVariable $value1 -RichTextBox $value2 .NOTES Author: Francois-Xavier Cat Twitter:@LazyWinAdm www.lazywinadmin.com github.com/lazywinadmin #> [CmdletBinding(SupportsShouldProcess = $true)] param ( [System.Windows.Forms.RichTextBox]$RichTextBox, [Switch]$ScrollToCaret ) BEGIN { Add-Type -AssemblyName System.Windows.Forms } PROCESS { IF ($PSCmdlet.ShouldProcess($RichTextBox, "Scroll to the end")) { $RichTextBox.ScrollToCaret() } } } |