GridTableStylesCollection.Contains Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |
Contains(DataGridTableStyle) |
Gets a value indicating whether the GridTableStylesCollection contains the specified DataGridTableStyle. |
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
.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 |
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
.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 |
Відгук про .NET
.NET – це проект із відкритим кодом. Виберіть посилання, щоб надати відгук: