DataGridViewColumn Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DataGridViewColumn class.
Overloads
DataGridViewColumn() |
Initializes a new instance of the DataGridViewColumn class to the default state. |
DataGridViewColumn(DataGridViewCell) |
Initializes a new instance of the DataGridViewColumn class using an existing DataGridViewCell as a template. |
DataGridViewColumn()
Initializes a new instance of the DataGridViewColumn class to the default state.
public:
DataGridViewColumn();
public DataGridViewColumn ();
Public Sub New ()
See also
Applies to
DataGridViewColumn(DataGridViewCell)
Initializes a new instance of the DataGridViewColumn class using an existing DataGridViewCell as a template.
public:
DataGridViewColumn(System::Windows::Forms::DataGridViewCell ^ cellTemplate);
public DataGridViewColumn (System.Windows.Forms.DataGridViewCell cellTemplate);
public DataGridViewColumn (System.Windows.Forms.DataGridViewCell? cellTemplate);
new System.Windows.Forms.DataGridViewColumn : System.Windows.Forms.DataGridViewCell -> System.Windows.Forms.DataGridViewColumn
Public Sub New (cellTemplate As DataGridViewCell)
Parameters
- cellTemplate
- DataGridViewCell
An existing DataGridViewCell to use as a template.
Remarks
This constructor sets the CellTemplate property to the value of the cellTemplate
parameter.