GridTableStylesCollection.Contains Method

Definition

Gets a value indicating whether the GridTableStylesCollection contains the specified DataGridTableStyle.

Overloads

Contains(String)

Gets a value indicating whether the GridTableStylesCollection contains the DataGridTableStyle specified by name.

Contains(DataGridTableStyle)

Gets a value indicating whether the GridTableStylesCollection contains the specified DataGridTableStyle.

Contains(String)

Gets a value indicating whether the GridTableStylesCollection contains the DataGridTableStyle specified by name.

C#
public bool Contains(string name);

Parameters

name
String

The MappingName of the DataGridTableStyle to look for.

Returns

true if the specified table style exists in the collection; otherwise, false.

Examples

The following code example uses the Contains method to determine if a DataGridTableStyle with the specified MappingName exists in the collection.

C#
private void TestContains()
{
   bool isContained;
   isContained = myDataGrid.TableStyles.Contains("Customers");
   Console.WriteLine(isContained);
}

Applies to

.NET Framework 4.8.1 та інші версії
Продукт Версії
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10

Contains(DataGridTableStyle)

Gets a value indicating whether the GridTableStylesCollection contains the specified DataGridTableStyle.

C#
public bool Contains(System.Windows.Forms.DataGridTableStyle table);

Parameters

table
DataGridTableStyle

The DataGridTableStyle to look for.

Returns

true if the specified table style exists in the collection; otherwise, false.

Applies to

.NET Framework 4.8.1 та інші версії
Продукт Версії
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10