SetColumnValue() публичный Метод

Sets a value to the element at the specified position of this row.
public SetColumnValue ( int index, object value ) : void
index int The index of the element to set.
value object The new value for the specified element.
Результат void
        /// <summary>
        ///   Sets a value to the array.
        /// </summary>
        ///
        public override void SetValue(object component, object value)
        {
            ArrayRowView rowView = component as ArrayRowView;

            if (rowView != null)
            {
                rowView.SetColumnValue(columnIndex, value);
            }
        }