GridColumnStylesCollection.AddRange(DataGridColumnStyle[]) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
열 스타일 개체의 배열을 컬렉션에 추가합니다.
public:
void AddRange(cli::array <System::Windows::Forms::DataGridColumnStyle ^> ^ columns);
public void AddRange (System.Windows.Forms.DataGridColumnStyle[] columns);
member this.AddRange : System.Windows.Forms.DataGridColumnStyle[] -> unit
Public Sub AddRange (columns As DataGridColumnStyle())
매개 변수
- columns
- DataGridColumnStyle[]
컬렉션에 추가할 DataGridColumnStyle 개체의 배열입니다.
예제
다음 코드 예제에서는 개체의 DataGridColumnStyle 배열을 만들고 메서드를 AddRange 사용하여 배열 GridColumnStylesCollection을 추가합니다.
void AddStyleRange()
{
// Create two DataGridColumnStyle objects.
DataGridColumnStyle^ col1 = gcnew DataGridTextBoxColumn;
col1->MappingName = "FirstName";
DataGridColumnStyle^ col2 = gcnew DataGridBoolColumn;
col2->MappingName = "Current";
// Create an array and use AddRange to add to collection.
array<DataGridColumnStyle^>^cols = {col1,col2};
dataGrid1->TableStyles[ 0 ]->GridColumnStyles->AddRange( cols );
}
private void AddStyleRange()
{
// Create two DataGridColumnStyle objects.
DataGridColumnStyle col1 = new DataGridTextBoxColumn();
col1.MappingName = "FirstName";
DataGridColumnStyle col2 = new DataGridBoolColumn();
col2.MappingName = "Current";
// Create an array and use AddRange to add to collection.
DataGridColumnStyle[] cols = new DataGridColumnStyle[2] {col1, col2};
dataGrid1.TableStyles[0].GridColumnStyles.AddRange(cols);
}
Private Sub AddStyleRange()
' Create two DataGridColumnStyle objects.
Dim col1 As New DataGridTextBoxColumn()
col1.MappingName = "FirstName"
Dim col2 As New DataGridBoolColumn()
col2.MappingName = "Current"
' Create an array and use AddRange to add to collection.
Dim cols() As DataGridColumnStyle = {col1, col2}
dataGrid1.TableStyles(0).GridColumnStyles.AddRange(cols)
End Sub