public override void SetValue(object component, object value)
 {
     if (IsReadOnly)
     {
         throw new InvalidOperationException(Strings.SetValueNotSupported);
     }
     _column.SetValue(GetWrapper(component), value);
 }