Public/Update-WFDataGridView.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
function Update-WFDataGridView
{
<#
    .SYNOPSIS
        Function to refresh the content of a DataGridView control
     
    .DESCRIPTION
        Function to refresh the content of a DataGridView control
     
    .PARAMETER DataGridView
        Specifies the DataGridView control to update
     
    .NOTES
        Author: Francois-Xavier Cat
        Twitter:@LazyWinAdm
        www.lazywinadmin.com
        github.com/lazywinadmin
#>

    
    [CmdletBinding(SupportsShouldProcess = $true)]
    param
    (
        [Parameter(Mandatory = $true)]
        [System.Windows.Forms.DataGridView]$DataGridView
    )
    
    BEGIN
    {
        Add-Type -AssemblyName System.Windows.Forms
    }
    PROCESS
    {
        IF ($PSCmdlet.ShouldProcess($DataGridView,"Refresh the content"))
        {
            $DataGridView.Refresh()
        }
    }
}