DataGridViewButtonColumn::DefaultCellStyle Property

 

Gets or sets the column's default cell style.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(true)]
property DataGridViewCellStyle^ DefaultCellStyle {
	virtual DataGridViewCellStyle^ get() override;
	virtual void set(DataGridViewCellStyle^ value) override;
}

Property Value

Type: System.Windows.Forms::DataGridViewCellStyle^

The DataGridViewCellStyle to be applied as the default style.

The default DataGridViewCellStyle returned by this property has an initial Alignment property value of MiddleCenter. This value overrides the value specified in the DefaultCellStyle property of the DataGridView control, but may be overridden by other cell style properties. For more information, see Cell Styles in the Windows Forms DataGridView Control.

System_CAPS_noteNote

When visual styles are enabled, the buttons in a button column are painted using a ButtonRenderer and cell styles specified through properties such as DefaultCellStyle have no effect.

The following code example demonstrates the use of this property.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: