DataGridViewRow.CreateCells 方法

定义

重新设置行中的单元格。

重载

CreateCells(DataGridView, Object[])

清除现有单元格并设置其模板和值。

CreateCells(DataGridView)

根据所提供的 DataGridView 模板清除现有单元格并设置它们的模板。

CreateCells(DataGridView, Object[])

清除现有单元格并设置其模板和值。

public:
 void CreateCells(System::Windows::Forms::DataGridView ^ dataGridView, ... cli::array <System::Object ^> ^ values);
public void CreateCells (System.Windows.Forms.DataGridView dataGridView, params object[] values);
member this.CreateCells : System.Windows.Forms.DataGridView * obj[] -> unit
Public Sub CreateCells (dataGridView As DataGridView, ParamArray values As Object())

参数

dataGridView
DataGridView

一个用作单元格样式模板的 DataGridView

values
Object[]

一组用于初始化重置单元格的对象。

例外

两个参数中有一个为 null

添加了一个已属于 DataGridView 的行。

- 或 -

添加了一个没有单元格模板的列。

注解

此方法清除行的 DataGridViewCellCollection ,并使用 CellTemplate 参数每列的 dataGridView 属性重新初始化该行。 因此,该行采用 参数中行 dataGridView 的外观和行为。

如果数组中的 values 元素多于要初始化的单元格,则将忽略额外的元素。 如果元素少于所需元素,则剩余的不匹配单元格将保留其默认值初始值。

另请参阅

适用于

CreateCells(DataGridView)

根据所提供的 DataGridView 模板清除现有单元格并设置它们的模板。

public:
 void CreateCells(System::Windows::Forms::DataGridView ^ dataGridView);
public void CreateCells (System.Windows.Forms.DataGridView dataGridView);
member this.CreateCells : System.Windows.Forms.DataGridView -> unit
Public Sub CreateCells (dataGridView As DataGridView)

参数

dataGridView
DataGridView

一个用作单元格样式模板的 DataGridView

例外

dataGridViewnull

添加了一个已属于 DataGridView 的行。

- 或 -

添加了一个没有单元格模板的列。

注解

此方法清除行的 DataGridViewCellCollection ,并使用 CellTemplate 参数每列的 dataGridView 属性重新初始化该行。 因此,该行采用 参数中行 dataGridView 的外观和行为。

另请参阅

适用于