GridColumnStylesCollection::Item Property (String^)

 

Gets the DataGridColumnStyle with the specified name.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property DataGridColumnStyle^ default[
	String^ columnName
] {
	DataGridColumnStyle^ get(String^ columnName);
}

Parameters

columnName
Type: System::String^

The MappingName of the DataGridColumnStyle to retrieve.

Property Value

Type: System.Windows.Forms::DataGridColumnStyle^

The DataGridColumnStyle with the specified column header.

The column header of a DataGridColumnStyle can be set explicitly by setting the HeaderText property. By default, the HeaderText is set using uses MappingName property value.

The comparison between column headers and the value to look for is not case-sensitive.

The following code example returns the DataGridColumnStyle named in the Item property.

Private Sub GetGridColumn()
    Dim myDataGridColumnStyle As DataGridColumnStyle 
    ' Get the DataGridColumnStyle at the specified index.
    myDataGridColumnStyle = _
    DataGrid1.TableStyles(0).GridColumnStyles("Fname")
    Console.WriteLine(myDataGridColumnStyle.MappingName)
End Sub 

.NET Framework
Available since 1.1
Return to top
Show: