Public/Clear-WFDataGridViewSelection.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 |
function Clear-WFDataGridViewSelection { <# .SYNOPSIS The Clear-WFDataGridViewSelection function will deselect any cell, row, column selection. .DESCRIPTION The Clear-WFDataGridViewSelection function will deselect any cell, row, column selection. .PARAMETER DataGridView Specifies the DataGridView Control to clear .EXAMPLE PS C:\> Clear-WFDataGridViewSelection -DataGridView $datagridviewOutput .NOTES Francois-Xavier Cat @lazywinadm www.lazywinadmin.com github.com/lazywinadmin #> [CmdletBinding()] PARAM ( [Parameter(Mandatory = $true)] [System.Windows.Forms.DataGridView]$DataGridView ) BEGIN { Add-Type -AssemblyName System.Windows.Forms } PROCESS { $DataGridView.ClearSelection() } } |