This column property determines how contained controls should be aligned.
grcColumn.DynamicAlignment = cExpression
cExpression = grcColumn.DynamicAlignmentBy supplying a character expression to the DynamicAlignment property, the contents of displayed cells can be aligned to the right, center or left of a column within a grid based on their content or other runtime conditions. This property could be used in combination with the DynamicColor properties to make unusual or out-of-bounds values stand out from the remainder of the display. DynamicAlignment is different from plain ol' Alignment in that it is evaluated individually for each cell in the column, so that cells meeting certain criteria can be differentiated from all the other cells in that column—Alignment applies to all the cells in a column.
grcColumn.DynamicAlignment = "iif(nValue<nThreshold,0,1)"