DataGridViewColumnHeaderCell.GetInheritedStyle Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает стиль, примененный к ячейке.
public:
override System::Windows::Forms::DataGridViewCellStyle ^ GetInheritedStyle(System::Windows::Forms::DataGridViewCellStyle ^ inheritedCellStyle, int rowIndex, bool includeColors);
public override System.Windows.Forms.DataGridViewCellStyle GetInheritedStyle (System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors);
override this.GetInheritedStyle : System.Windows.Forms.DataGridViewCellStyle * int * bool -> System.Windows.Forms.DataGridViewCellStyle
Public Overrides Function GetInheritedStyle (inheritedCellStyle As DataGridViewCellStyle, rowIndex As Integer, includeColors As Boolean) As DataGridViewCellStyle
Параметры
- inheritedCellStyle
- DataGridViewCellStyle
Объект DataGridViewCellStyle, заполняемый наследуемым стилем ячейки.
- rowIndex
- Int32
Индекс родительской строки ячейки.
- includeColors
- Boolean
Значение true
, если требуется включить наследуемые цвета в возвращаемый стиль ячейки; в противном случае — значение false
.
Возвращаемое значение
Объект DataGridViewCellStyle, включающий параметры стиля ячейки, наследуемые из родительской строки, родительского столбца и DataGridView ячейки.
Исключения
Значение параметра rowIndex
не равно -1.
Комментарии
Этот метод возвращает значениеDataGridViewCellStyle, которое наследует его параметры от DataGridViewCellStyle объектов, возвращаемых свойствами DefaultCellStyle ColumnHeadersDefaultCellStyle объектаDataGridView. Дополнительные сведения см. в разделе "Стили ячеек" в элементе управления Windows Forms DataGridView.