DataGridViewColumnCollection.GetPreviousColumn Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá poslední sloupec před daným sloupcem v pořadí zobrazení, které splňuje dané požadavky filtru.
public:
System::Windows::Forms::DataGridViewColumn ^ GetPreviousColumn(System::Windows::Forms::DataGridViewColumn ^ dataGridViewColumnStart, System::Windows::Forms::DataGridViewElementStates includeFilter, System::Windows::Forms::DataGridViewElementStates excludeFilter);
public System.Windows.Forms.DataGridViewColumn GetPreviousColumn (System.Windows.Forms.DataGridViewColumn dataGridViewColumnStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter);
public System.Windows.Forms.DataGridViewColumn? GetPreviousColumn (System.Windows.Forms.DataGridViewColumn dataGridViewColumnStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter);
member this.GetPreviousColumn : System.Windows.Forms.DataGridViewColumn * System.Windows.Forms.DataGridViewElementStates * System.Windows.Forms.DataGridViewElementStates -> System.Windows.Forms.DataGridViewColumn
Public Function GetPreviousColumn (dataGridViewColumnStart As DataGridViewColumn, includeFilter As DataGridViewElementStates, excludeFilter As DataGridViewElementStates) As DataGridViewColumn
Parametry
- dataGridViewColumnStart
- DataGridViewColumn
Sloupec, od kterého chcete začít hledat předchozí sloupec.
- includeFilter
- DataGridViewElementStates
Bitová kombinace DataGridViewElementStates hodnot, které představují filtr pro zahrnutí.
- excludeFilter
- DataGridViewElementStates
Bitové kombinace DataGridViewElementStates hodnot, které představují filtr pro vyloučení.
Návraty
Předchozí sloupec, který splňuje požadavky daného filtru, nebo null
pokud nebyl nalezen žádný sloupec.
Výjimky
dataGridViewColumnStart
je null
.
Alespoň jedna z hodnot filtru není platná bitové kombinace DataGridViewElementStates hodnot.
Poznámky
Předchozí sloupec v pořadí zobrazení je sloupec s nejvyšší DisplayIndex hodnotou nižší, než DisplayIndex je hodnota zadaného sloupce, bez ohledu na to, zda je sloupec skutečně viditelný na obrazovce.
Tato metoda umožňuje určit první sloupec před aktuálním sloupcem, který odpovídá zadaným kritériím, aniž by bylo nutné přímo porovnávat hodnoty indexu.