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.

public:
 bool Contains(System::String ^ name);
public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean

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.

void TestContains()
{
   bool isContained;
   isContained = myDataGrid->TableStyles->Contains( "Customers" );
   Console::WriteLine( isContained );
}
private void TestContains()
{
   bool isContained;
   isContained = myDataGrid.TableStyles.Contains("Customers");
   Console.WriteLine(isContained);
}
private Sub TestContains()
   Dim isContained As Boolean
   isContained = myDataGrid.TableStyles.Contains("Customers")
   Console.WriteLine(isContained)
End Sub

Applies to

Contains(DataGridTableStyle)

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

public:
 bool Contains(System::Windows::Forms::DataGridTableStyle ^ table);
public bool Contains (System.Windows.Forms.DataGridTableStyle table);
member this.Contains : System.Windows.Forms.DataGridTableStyle -> bool
Public Function Contains (table As DataGridTableStyle) As Boolean

Parameters

table
DataGridTableStyle

The DataGridTableStyle to look for.

Returns

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

Applies to