GridColumnStylesCollection.Item[] Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает заданный объект DataGridColumnStyle в коллекции GridColumnStylesCollection.
Перегрузки
Item[Int32] |
Получает DataGridColumnStyle по указанному индексу. |
Item[String] |
Возвращает объект DataGridColumnStyle с указанным именем. |
Item[PropertyDescriptor] |
Получает объект DataGridColumnStyle, связанный с заданным объектом PropertyDescriptor. |
Item[Int32]
Получает DataGridColumnStyle по указанному индексу.
public:
property System::Windows::Forms::DataGridColumnStyle ^ default[int] { System::Windows::Forms::DataGridColumnStyle ^ get(int index); };
public System.Windows.Forms.DataGridColumnStyle this[int index] { get; }
member this.Item(int) : System.Windows.Forms.DataGridColumnStyle
Default Public ReadOnly Property Item(index As Integer) As DataGridColumnStyle
Параметры
- index
- Int32
Отсчитываемый от нуля индекс возвращаемого объекта DataGridColumnStyle.
Значение свойства
Указанный DataGridColumnStyle.
Примеры
В следующем примере кода показано, как DataGridColumnStyle Item[] использовать свойство.
Private Sub GetGridColumn()
Dim myDataGridColumnStyle As DataGridColumnStyle
' Get the DataGridColumnStyle at the specified index.
myDataGridColumnStyle = _
DataGrid1.TableStyles(0).GridColumnStyles(0)
Console.WriteLine(myDataGridColumnStyle.MappingName)
End Sub
Комментарии
IndexOf Используйте метод, чтобы определить индекс любого элемента в коллекции.
Применяется к
Item[String]
Возвращает объект DataGridColumnStyle с указанным именем.
public:
property System::Windows::Forms::DataGridColumnStyle ^ default[System::String ^] { System::Windows::Forms::DataGridColumnStyle ^ get(System::String ^ columnName); };
public System.Windows.Forms.DataGridColumnStyle this[string columnName] { get; }
member this.Item(string) : System.Windows.Forms.DataGridColumnStyle
Default Public ReadOnly Property Item(columnName As String) As DataGridColumnStyle
Параметры
- columnName
- String
Свойство MappingName извлекаемого объекта DataGridColumnStyle.
Значение свойства
Объект DataGridColumnStyle с заданным заголовком столбца.
Примеры
В следующем примере кода возвращается DataGridColumnStyle имя в свойстве Item[] .
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
Комментарии
Заголовок столбца DataGridColumnStyle можно задать явным образом, задав HeaderText свойство. По умолчанию HeaderText используется MappingName значение свойства.
Сравнение заголовков столбцов и значения для поиска не учитывает регистр.
Применяется к
Item[PropertyDescriptor]
Получает объект DataGridColumnStyle, связанный с заданным объектом PropertyDescriptor.
public:
property System::Windows::Forms::DataGridColumnStyle ^ default[System::ComponentModel::PropertyDescriptor ^] { System::Windows::Forms::DataGridColumnStyle ^ get(System::ComponentModel::PropertyDescriptor ^ propDesc); };
public:
property System::Windows::Forms::DataGridColumnStyle ^ default[System::ComponentModel::PropertyDescriptor ^] { System::Windows::Forms::DataGridColumnStyle ^ get(System::ComponentModel::PropertyDescriptor ^ propertyDesciptor); };
public System.Windows.Forms.DataGridColumnStyle this[System.ComponentModel.PropertyDescriptor propDesc] { get; }
public System.Windows.Forms.DataGridColumnStyle this[System.ComponentModel.PropertyDescriptor propertyDesciptor] { get; }
member this.Item(System.ComponentModel.PropertyDescriptor) : System.Windows.Forms.DataGridColumnStyle
Default Public ReadOnly Property Item(propDesc As PropertyDescriptor) As DataGridColumnStyle
Default Public ReadOnly Property Item(propertyDesciptor As PropertyDescriptor) As DataGridColumnStyle
Параметры
- propDescpropertyDesciptor
- PropertyDescriptor
Объект PropertyDescriptor, связанный с объектом DataGridColumnStyle.
Значение свойства
Объект DataGridColumnStyle, связанный с заданным дескриптором PropertyDescriptor.
Примеры
В следующем примере кода получается DataColumn из объекта DataTable in a DataSet, а затем передается в качестве аргумента в Add метод.
Private Sub ContainsThisDataCol()
Dim myPropertyDescriptor As PropertyDescriptor
Dim myPropertyDescriptorCollection As PropertyDescriptorCOllection
myPropertyDescriptorCollection = _
me.BindingContext(DataSet1, "Customers").GetItemProperties()
myPropertyDescriptor = myPropertyDescriptorCollection("FirstName")
Dim myDataGridColumnStyle As DataGridColumnStyle
myDataGridColumnStyle = DataGrid1.TableStyles(0). _
GridColumnStyles(myPropertyDescriptor)
End Sub
Комментарии
Каждый DataGridColumnStyle из них создается с помощью .PropertyDescriptor Его PropertyDescriptor можно вернуть с помощью PropertyDescriptor свойства.
Чтобы получить PropertyDescriptorCollection конкретный источник данных, используйте GetItemProperties метод BindingManagerBase класса. MappingName Item[] Передайте свойство возвращаемого PropertyDescriptor столбца PropertyDescriptorCollection в свойство, возвращаемое для определенного столбца.