Hello,
I have Hyperlink columns and am noticing it's just ignoring the TextAlignment property. I changed the "GridViewHyperlinkColumn" to "GridViewTextBoxColumn" and the TextAlignment works just fine.
I have Hyperlink columns and am noticing it's just ignoring the TextAlignment property. I changed the "GridViewHyperlinkColumn" to "GridViewTextBoxColumn" and the TextAlignment works just fine.
var column =
new
GridViewHyperlinkColumn() { FieldName = sColumnNames[i], HeaderText = sColumnDisplayNames[i],
HeaderTextAlignment = ContentAlignment.MiddleLeft, TextAlignment = ContentAlignment.MiddleCenter };
rgvWidget.Columns.Add(column);