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

GetValue() public method

Gets a value from the array.
public GetValue ( object component ) : object
component object
return object
        public override object GetValue(object component)
        {
            try
            {
                return ((ArrayRowView)component).GetColumn(columnIndex);
            }
            catch (ArgumentException e)
            {
                Debug.WriteLine(e);
            }
            catch (IndexOutOfRangeException e)
            {
                Debug.WriteLine(e);
            }

            return null;
        }