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
。
戻り値
セルの親の行、列、および DataGridView から継承されたセルのスタイル設定を含む DataGridViewCellStyle。
例外
関連付けられた DataGridView がセルにありません。
- または - ColumnIndex が 0 未満です。これは、セルが行ヘッダーのセルであることを示します。
rowIndex
が 0 未満か、親の DataGridView に含まれている行数以上の値です。
注釈
このメソッドは、DataGridViewCellStyleDataGridViewCellStyleセルの親行、列、および DataGridView. 詳細については、「Windows フォーム DataGridView コントロールでのセルのスタイル」を参照してください。