DataGridViewCell.GetInheritedStyle 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取应用于单元格的样式。
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 继承而来的单元格样式设置。
例外
rowIndex
小于 0,或大于等于父 DataGridView 中的行数。
注解
此方法返回一个DataGridViewCellStyle从单元格的父行、列和DataGridView的对象继承其设置DataGridViewCellStyle。 有关详细信息,请参阅 Windows 窗体 DataGridView 控件中的单元格样式。