Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のようなif条件を持っています:
if (e.Item.Cells[7].Text == "something")
しかし、セル[7]が最初に存在するかどうかを最初に確認するにはどうすればよいですか?
ありがとう...
プロパティを使用できCells.Countます。7より大きい場合は、Cells[7]存在することを意味します(インデックスはゼロベースであるため)。
Cells.Count
Cells[7]
if (e.Item.Cells.Count > 7 && e.Item.Cells[7].Text == "something")