I know that this has already been answered, but as an alternative, you can do the following (especially if you do not want OwnerDraw = True):
column.AspectToStringConverter = delegate (object o)
{
return string.Empty;
};
As a result, an empty string will be displayed.
Simon source
share