DataGridViewCell.OwningRow プロパティに対応する機能は?

文書番号 : 26407     文書種別 : 使用方法     最終更新日 : 2008/11/07
文書を印刷する
対象製品
MultiRow for Windows Forms 5.0J
詳細
セルから、セルを格納している行を取得するには Cell.Section プロパティを使用します。

[Visual Basic]
Imports GrapeCity.Win.MultiRow

Dim row As Row = DirectCast(GcMultiRow1.CurrentCell.Section, Row);
Console.WriteLine("新規行: {0}", row.IsNewRow)

[C#]
using GrapeCity.Win.MultiRow;

Row row = gcMultiRow1.CurrentCell.Section as Row;
Console.WriteLine("新規行: {0}", row.IsNewRow);

この文書は、以前は次のFAQ IDで公開されていました : 11549