Accord.Controls.ArrayPropertyDescriptor.SetValue C# (CSharp) Method

SetValue() public method

Sets a value to the array.
public SetValue ( object component, object value ) : void
component object
value object
return void
        public override void SetValue(object component, object value)
        {
            ArrayRowView rowView = component as ArrayRowView;

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