DataGridViewBand.Index Свойство

Определение

Получает относительную позицию диапазона в элементе управления DataGridView.

public:
 property int Index { int get(); };
[System.ComponentModel.Browsable(false)]
public int Index { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Index : int
Public ReadOnly Property Index As Integer

Значение свойства

Int32

Отсчитываемый от нуля индекс диапазона в коллекции DataGridViewRowCollection или DataGridViewColumnCollection, в которой он содержится. По умолчанию возвращается -1, указывая на отсутствие связанного элемента управления DataGridView.

Атрибуты

Примеры

В следующем примере кода свойство используется Index для задания меток столбцов. Доступ к свойству Index группы осуществляется через DataGridViewColumn.

Примечание

Если визуальные стили включены, текущая тема переопределяет свойства стиля отображения для заголовков строк и столбцов.

// Style and number columns.
void Button8_Click( Object^ /*sender*/, EventArgs^ /*args*/ )
{
   DataGridViewCellStyle^ style = gcnew DataGridViewCellStyle;
   style->Alignment = DataGridViewContentAlignment::MiddleCenter;
   style->ForeColor = Color::IndianRed;
   style->BackColor = Color::Ivory;
   IEnumerator^ myEnum1 = dataGridView->Columns->GetEnumerator();
   while ( myEnum1->MoveNext() )
   {
      DataGridViewColumn^ column = safe_cast<DataGridViewColumn^>(myEnum1->Current);
      column->HeaderCell->Value = column->Index.ToString();
      column->HeaderCell->Style = style;
   }
}
// Style and number columns.
private void Button8_Click(object sender,
    EventArgs args)
{
    DataGridViewCellStyle style = new DataGridViewCellStyle();
    style.Alignment =
        DataGridViewContentAlignment.MiddleCenter;
    style.ForeColor = Color.IndianRed;
    style.BackColor = Color.Ivory;

    foreach (DataGridViewColumn column in dataGridView.Columns)
    {
        column.HeaderCell.Value = column.Index.ToString();
        column.HeaderCell.Style = style;
    }
}
' Style and number columns.
Private Sub Button8_Click(ByVal sender As Object, _
    ByVal args As EventArgs) Handles Button8.Click

    Dim style As DataGridViewCellStyle = _
        New DataGridViewCellStyle()
    style.Alignment = _
        DataGridViewContentAlignment.MiddleCenter
    style.ForeColor = Color.IndianRed
    style.BackColor = Color.Ivory

    For Each column As DataGridViewColumn _
        In dataGridView.Columns

        column.HeaderCell.Value = _
            column.Index.ToString
        column.HeaderCell.Style = style
    Next
End Sub

Комментарии

Значение этого свойства не обязательно соответствует текущей визуальной позиции полосы в коллекции. Например, если пользователь переупорядочения столбцов во DataGridView время выполнения (при условии AllowUserToOrderColumns , что свойство задано true), значение Index свойства каждого столбца не изменится. Вместо этого значения столбца DisplayIndex изменяются. Однако сортировка строк изменяет их Index значения.

Применяется к

См. также раздел