DataGridViewRowCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataGridViewRow 개체의 컬렉션입니다.
public ref class DataGridViewRowCollection : System::Collections::IList
[System.ComponentModel.ListBindable(false)]
public class DataGridViewRowCollection : System.Collections.IList
[<System.ComponentModel.ListBindable(false)>]
type DataGridViewRowCollection = class
interface IList
interface ICollection
interface IEnumerable
[<System.ComponentModel.ListBindable(false)>]
type DataGridViewRowCollection = class
interface ICollection
interface IEnumerable
interface IList
Public Class DataGridViewRowCollection
Implements IList
- 상속
-
DataGridViewRowCollection
- 특성
- 구현
설명
에는 DataGridViewRowCollection 컨트롤의 DataGridViewRow 개체가 DataGridView 포함됩니다. 컨트롤 Rows 속성을 통해 이 클래스의 instance 검색할 수 있습니다. 컬렉션은 속성을 통해 컨트롤에 대한 참조를 DataGridView 유지 관리합니다.
성능을 향상시키기 위해 에는 DataGridViewRowCollection 공유 행과 공유되지 않은 행이 포함됩니다. 공유 행은 메모리를 공유하여 큰 레코드 집합의 비용을 줄입니다. 레코드 집합이 매우 큰 경우 행을 가능한 한 많이 공유하도록 주의해야 합니다.
자세한 내용은 Windows Forms DataGridView 컨트롤의 크기를 조정하는 최선의 방법을 참조하세요.
생성자
DataGridViewRowCollection(DataGridView) |
DataGridViewRowCollection 클래스의 새 인스턴스를 초기화합니다. |
속성
Count |
컬렉션의 행 수를 가져옵니다. |
DataGridView |
컬렉션을 소유하는 DataGridView 를 가져옵니다. |
Item[Int32] |
지정된 인덱스의 DataGridViewRow를 가져옵니다. |
List |
DataGridViewRow 개체의 배열을 가져옵니다. |
메서드
이벤트
CollectionChanged |
컬렉션의 내용이 변경된 경우 발생합니다. |
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
컬렉션의 요소를 Array의 지정된 인덱스에서 시작하는 위치에 복사합니다. |
ICollection.Count |
컬렉션에 포함된 요소 수를 가져옵니다. |
ICollection.IsSynchronized |
해당 컬렉션에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지를 나타내는 값을 가져옵니다. |
ICollection.SyncRoot |
컬렉션에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. |
IEnumerable.GetEnumerator() |
컬렉션을 반복하는 열거자를 반환합니다. |
IList.Add(Object) |
DataGridViewRow를 컬렉션에 추가합니다. |
IList.Clear() |
컬렉션에서 모든 항목을 제거합니다. |
IList.Contains(Object) |
컬렉션에 지정된 항목이 포함되는지 여부를 결정합니다. |
IList.IndexOf(Object) |
컬렉션에서 지정한 항목의 인덱스를 반환합니다. |
IList.Insert(Int32, Object) |
DataGridViewRow을 컬렉션에서 지정한 인덱스에 삽입합니다. |
IList.IsFixedSize |
컬렉션의 크기가 고정되어 있는지를 나타내는 값을 가져옵니다. |
IList.IsReadOnly |
컬렉션이 읽기 전용인지를 나타내는 값을 가져옵니다. |
IList.Item[Int32] |
지정한 인덱스에 있는 요소를 가져오거나 설정합니다. |
IList.Remove(Object) |
지정된 DataGridViewRow를 컬렉션에서 제거합니다. |
IList.RemoveAt(Int32) |
컬렉션에서 지정된 위치의 DataGridViewRow 를 제거합니다. |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET