DataGridViewCell.GetInheritedStyle Метод

Определение

Получает стиль, примененный к ячейке.

public:
 virtual System::Windows::Forms::DataGridViewCellStyle ^ GetInheritedStyle(System::Windows::Forms::DataGridViewCellStyle ^ inheritedCellStyle, int rowIndex, bool includeColors);
public virtual System.Windows.Forms.DataGridViewCellStyle GetInheritedStyle (System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors);
public virtual System.Windows.Forms.DataGridViewCellStyle GetInheritedStyle (System.Windows.Forms.DataGridViewCellStyle? inheritedCellStyle, int rowIndex, bool includeColors);
abstract member GetInheritedStyle : System.Windows.Forms.DataGridViewCellStyle * int * bool -> System.Windows.Forms.DataGridViewCellStyle
override this.GetInheritedStyle : System.Windows.Forms.DataGridViewCellStyle * int * bool -> System.Windows.Forms.DataGridViewCellStyle
Public Overridable Function GetInheritedStyle (inheritedCellStyle As DataGridViewCellStyle, rowIndex As Integer, includeColors As Boolean) As DataGridViewCellStyle

Параметры

inheritedCellStyle
DataGridViewCellStyle

Объект DataGridViewCellStyle, заполняемый наследуемым стилем ячейки.

rowIndex
Int32

Индекс родительской строки ячейки.

includeColors
Boolean

Значение true, если требуется включить наследуемые цвета в возвращаемый стиль ячейки; в противном случае — значение false.

Возвращаемое значение

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

Исключения

Ячейка не имеет связанного объекта DataGridView.

-или-

Значение ColumnIndex меньше 0, свидетельствующее о том, что ячейка является ячейкой заголовка строки.

Значение rowIndex меньше 0 либо больше или равно числу строк в родительском объекте DataGridView.

Комментарии

Этот метод возвращает объект DataGridViewCellStyle , который наследует его параметры от DataGridViewCellStyle объектов родительской строки, столбца и DataGridViewячейки . Подробнее см. в статье Стили ячеек элемента управления DataGridView в Windows Forms.

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

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