GridColumnStylesCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataGrid 컨트롤에 있는 DataGridColumnStyle 개체의 컬렉션을 나타냅니다.
public ref class GridColumnStylesCollection : System::Windows::Forms::BaseCollection, System::Collections::IList
[System.ComponentModel.ListBindable(false)]
public class GridColumnStylesCollection : System.Windows.Forms.BaseCollection, System.Collections.IList
[<System.ComponentModel.ListBindable(false)>]
type GridColumnStylesCollection = class
inherit BaseCollection
interface IList
interface ICollection
interface IEnumerable
Public Class GridColumnStylesCollection
Inherits BaseCollection
Implements IList
- 상속
- 특성
- 구현
예제
다음 코드 예제에서는 의 각 DataGridColumnStyle 에 GridColumnStylesCollection대한 정보를 출력합니다.
void PrintColumnInformation( DataGrid^ grid )
{
Console::WriteLine( "Count: {0}", grid->TableStyles->Count );
GridColumnStylesCollection^ myColumns;
DataGridTableStyle^ myTableStyle;
for ( __int32 i = 0; i < grid->TableStyles->Count; i++ )
{
myTableStyle = grid->TableStyles[ i ];
myColumns = myTableStyle->GridColumnStyles;
/* Iterate through the collection and print each
object's type and width. */
DataGridColumnStyle^ dgCol;
for ( __int32 j = 0; j < myColumns->Count; j++ )
{
dgCol = myColumns[ j ];
Console::WriteLine( dgCol->MappingName );
Console::WriteLine( dgCol->GetType()->ToString() );
Console::WriteLine( dgCol->Width );
}
}
}
private void PrintColumnInformation(DataGrid grid){
Console.WriteLine("Count: " + grid.TableStyles.Count);
GridColumnStylesCollection myColumns;
foreach(DataGridTableStyle myTableStyle in grid.TableStyles){
myColumns = myTableStyle.GridColumnStyles;
/* Iterate through the collection and print each
object's type and width. */
foreach (DataGridColumnStyle dgCol in myColumns){
Console.WriteLine(dgCol.MappingName);
Console.WriteLine(dgCol.GetType().ToString());
Console.WriteLine(dgCol.Width);
}
}
}
Private Sub PrintColumnInformation(grid as DataGrid)
Console.WriteLine("Count: " & grid.TableStyles.Count)
Dim myTableStyle As DataGridTableStyle
Dim myColumns As GridColumnStylesCollection
Dim dgCol As DataGridColumnStyle
For Each myTableStyle in grid.TableStyles
myColumns = myTableStyle.GridColumnStyles
' Iterate through the collection and print each
' object's type and width.
For Each dgCol in myColumns
Console.WriteLine(dgCol.MappingName)
Console.WriteLine(dgCol.GetType.ToString())
Console.WriteLine(dgCol.Width)
Next
Next
End Sub
설명
에서 DataGridTableStyle속성을 통해 에 GridColumnStylesCollection 액세스합니다 GridColumnStyles .
는 GridColumnStylesCollection 표준 Add 및 Remove 메서드를 사용하여 컬렉션을 조작합니다.
메서드를 Contains 사용하여 컬렉션에 특정 속성 값이 있는지 확인합니다. 또한 메서드를 IndexOf 사용하여 컬렉션 내의 개체 DataGridColumnStyle 의 인덱스도 확인합니다.
주의
개체를 에 추가하기 전에 항상 개체GridTableStylesCollection를 GridColumnStylesCollection 만들고 DataGridColumnStyle 에 추가 DataGridTableStyle 합니다. 컬렉션 DataGridColumnStyle 에 유효한 MappingName 값이 있는 빈 DataGridTableStyle 을 추가하면 개체가 자동으로 생성됩니다. 따라서 중복 MappingName 값이 있는 새 DataGridColumnStyle 개체를 에 추가하려고 하면 예외가 GridColumnStylesCollectionthrow됩니다.
속성
Count |
컬렉션의 총 요소 수를 가져옵니다. (다음에서 상속됨 BaseCollection) |
IsReadOnly |
컬렉션이 읽기 전용인지를 나타내는 값을 가져옵니다. (다음에서 상속됨 BaseCollection) |
IsSynchronized |
ICollection에 대한 액세스가 동기화되는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 BaseCollection) |
Item[Int32] |
지정된 인덱스에 해당하는 DataGridColumnStyle을 가져옵니다. |
Item[PropertyDescriptor] |
지정된 DataGridColumnStyle에 연결된 PropertyDescriptor를 가져옵니다. |
Item[String] |
지정된 이름을 가진 DataGridColumnStyle를 가져옵니다. |
List |
컬렉션의 항목 목록을 가져옵니다. |
SyncRoot |
BaseCollection에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. (다음에서 상속됨 BaseCollection) |
메서드
이벤트
CollectionChanged |
GridColumnStylesCollection에 변경 내용이 생길 때 발생합니다. |
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
대상 배열의 지정된 인덱스에서 시작하여 컬렉션을 호환되는 1차원 Array에 복사합니다. |
ICollection.Count |
컬렉션에 포함된 요소 수를 가져옵니다. |
ICollection.IsSynchronized |
GridColumnStylesCollection에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지를 나타내는 값을 가져옵니다. |
ICollection.SyncRoot |
GridColumnStylesCollection에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다. |
IEnumerable.GetEnumerator() |
컬렉션에 대한 열거자를 반환합니다. |
IList.Add(Object) |
컬렉션에 개체를 추가합니다. |
IList.Clear() |
DataGridColumnStyle 개체의 컬렉션을 지웁니다. |
IList.Contains(Object) |
요소가 컬렉션에 있는지 여부를 확인합니다. |
IList.IndexOf(Object) |
컬렉션에서 지정한 개체가 처음 나타나는 인덱스(0부터 시작)를 반환합니다. |
IList.Insert(Int32, Object) |
이 메서드는 이 컨트롤에서 지원되지 않습니다. |
IList.IsFixedSize |
컬렉션의 크기가 고정되어 있는지를 나타내는 값을 가져옵니다. |
IList.IsReadOnly |
컬렉션이 읽기 전용인지를 나타내는 값을 가져옵니다. |
IList.Item[Int32] |
지정한 인덱스에 있는 요소를 가져옵니다. |
IList.Remove(Object) |
DataGridColumnStyle에서 지정된 GridColumnStylesCollection을 제거합니다. |
IList.RemoveAt(Int32) |
DataGridColumnStyle에서 지정한 인덱스에 있는 GridColumnStylesCollection를 제거합니다. |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET