DataGridColumnStyle::Alignment Property
.NET Framework (current version)
Gets or sets the alignment of text in a column.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property HorizontalAlignment Alignment { virtual HorizontalAlignment get(); virtual void set(HorizontalAlignment value); }
Property Value
Type: System.Windows.Forms::HorizontalAlignmentOne of the HorizontalAlignment values. The default is Left. Valid options include Left, Center, and Right.
The following code example sets the Alignment property for each column in a System.Windows.Forms::DataGrid to HorizontalAlignment.Center if the data isn't a string.
Private Sub SetAlign() Dim myColumnStyle As DataGridColumnStyle For each myColumnStyle In dataGrid1.TableStyles("Customers"). _ GridColumnStyles myColumnStyle.Alignment = HorizontalAlignment.Center Next End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: