DataGridTableStyle.CreateGridColumn Method

Definition

Creates a DataGridColumnStyle.

Overloads

CreateGridColumn(PropertyDescriptor)

Creates a DataGridColumnStyle, using the specified property descriptor.

CreateGridColumn(PropertyDescriptor, Boolean)

Creates a DataGridColumnStyle using the specified property descriptor. Specifies whether the DataGridColumnStyle is a default column style.

CreateGridColumn(PropertyDescriptor)

Creates a DataGridColumnStyle, using the specified property descriptor.

protected public:
 virtual System::Windows::Forms::DataGridColumnStyle ^ CreateGridColumn(System::ComponentModel::PropertyDescriptor ^ prop);
protected internal virtual System.Windows.Forms.DataGridColumnStyle CreateGridColumn (System.ComponentModel.PropertyDescriptor prop);
abstract member CreateGridColumn : System.ComponentModel.PropertyDescriptor -> System.Windows.Forms.DataGridColumnStyle
override this.CreateGridColumn : System.ComponentModel.PropertyDescriptor -> System.Windows.Forms.DataGridColumnStyle
Protected Friend Overridable Function CreateGridColumn (prop As PropertyDescriptor) As DataGridColumnStyle

Parameters

prop
PropertyDescriptor

The PropertyDescriptor used to create the column style object.

Returns

The newly created DataGridColumnStyle.

Applies to

CreateGridColumn(PropertyDescriptor, Boolean)

Creates a DataGridColumnStyle using the specified property descriptor. Specifies whether the DataGridColumnStyle is a default column style.

protected public:
 virtual System::Windows::Forms::DataGridColumnStyle ^ CreateGridColumn(System::ComponentModel::PropertyDescriptor ^ prop, bool isDefault);
protected internal virtual System.Windows.Forms.DataGridColumnStyle CreateGridColumn (System.ComponentModel.PropertyDescriptor prop, bool isDefault);
abstract member CreateGridColumn : System.ComponentModel.PropertyDescriptor * bool -> System.Windows.Forms.DataGridColumnStyle
override this.CreateGridColumn : System.ComponentModel.PropertyDescriptor * bool -> System.Windows.Forms.DataGridColumnStyle
Protected Friend Overridable Function CreateGridColumn (prop As PropertyDescriptor, isDefault As Boolean) As DataGridColumnStyle

Parameters

prop
PropertyDescriptor

The PropertyDescriptor used to create the column style object.

isDefault
Boolean

Specifies whether the DataGridColumnStyle is a default column style. This parameter is read-only.

Returns

The newly created DataGridColumnStyle.

Applies to