DataColumnMappingCollection.RemoveAt 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 지정된 DataColumnMapping 개체를 제거합니다.
오버로드
RemoveAt(Int32) |
컬렉션에서 지정된 인덱스를 가진 DataColumnMapping개체를 제거합니다. |
RemoveAt(String) |
컬렉션에서 지정된 소스 열 이름을 가진 DataColumnMapping개체를 제거합니다. |
RemoveAt(Int32)
컬렉션에서 지정된 인덱스를 가진 DataColumnMapping개체를 제거합니다.
public:
virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
매개 변수
- index
- Int32
제거할 DataColumnMapping 개체의 인덱스(0부터 시작)입니다.
구현
예외
지정된 인덱스에 DataColumnMapping가 개체가 없는 경우
예제
다음 예제에서는 컬렉션 내에서 지정된 인덱스가 있는 개체를 검색 DataColumnMapping 합니다 DataColumnMappingCollection . DataColumnMapping 있는 경우 매핑이 제거됩니다. 이 예제에서는 컬렉션이 DataColumnMappingCollection 생성되었다고 가정합니다.
public void RemoveDataColumnMapping()
{
// ...
// create mappings
// ...
if (mappings.Contains(7))
mappings.RemoveAt(7);
}
Public Sub RemoveDataColumnMapping()
' ...
' create mappings
' ...
If mappings.Contains(7) Then
mappings.RemoveAt(7)
End If
End Sub
추가 정보
적용 대상
RemoveAt(String)
컬렉션에서 지정된 소스 열 이름을 가진 DataColumnMapping개체를 제거합니다.
public:
virtual void RemoveAt(System::String ^ sourceColumn);
public void RemoveAt (string sourceColumn);
abstract member RemoveAt : string -> unit
override this.RemoveAt : string -> unit
Public Sub RemoveAt (sourceColumn As String)
매개 변수
- sourceColumn
- String
대/소문자 구분 소스 열 이름입니다.
구현
예외
지정된 소스 열 이름을 가진 DataColumnMapping 개체가 없는 경우
예제
다음 예제에서는 컬렉션 내에서 지정된 소스 열 이름을 가진 개체를 검색 DataColumnMapping 합니다 DataColumnMappingCollection . DataColumnMapping 있는 경우 매핑이 제거됩니다. 이 예제에서는 컬렉션이 DataColumnMappingCollection 생성되었다고 가정합니다.
public void RemoveDataColumnMapping()
{
// ...
// create columnMappings
// ...
if (columnMappings.Contains("Picture"))
columnMappings.RemoveAt("Picture");
}
Public Sub RemoveDataColumnMapping()
' ...
' create columnMappings
' ...
If columnMappings.Contains("Picture") Then
columnMappings.RemoveAt("Picture")
End If
End Sub