DataGridViewCellCollection.Insert(Int32, DataGridViewCell) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 인덱스의 컬렉션에 셀을 삽입합니다.
public:
virtual void Insert(int index, System::Windows::Forms::DataGridViewCell ^ dataGridViewCell);
public virtual void Insert (int index, System.Windows.Forms.DataGridViewCell dataGridViewCell);
abstract member Insert : int * System.Windows.Forms.DataGridViewCell -> unit
override this.Insert : int * System.Windows.Forms.DataGridViewCell -> unit
Public Overridable Sub Insert (index As Integer, dataGridViewCell As DataGridViewCell)
매개 변수
- index
- Int32
dataGridViewCell
을 배치할 0부터 시작하는 인덱스입니다.
- dataGridViewCell
- DataGridViewCell
삽입할 DataGridViewCell입니다.
예외
이 DataGridViewCellCollection을 소유하는 행이 이미 DataGridView 컨트롤에 속해 있는 경우
또는
dataGridViewCell
이 이미 DataGridViewRow에 속해 있는 경우
설명
포함하는 행 DataGridView 을 컨트롤에 추가하기 전에 이 메서드를 사용하여 컬렉션을 변경합니다. 컨트롤에 행을 추가하면 포함된 셀 수가 항상 컨트롤의 열 수와 일치하므로 이 메서드는 더 이상 유용하지 않습니다.