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