C# Class Accord.Controls.ArrayRowView

Represents a row from array view.
Inheritance: ICustomTypeDescriptor, IEditableObject, IDataErrorInfo
ファイルを表示 Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
ArrayRowView ( ArrayDataView owner, int index ) : System

Initializes a new instance of the ArrayRowView class.

BeginEdit ( ) : void

Does nothing.

CancelEdit ( ) : void

Does nothing.

EndEdit ( ) : void

Does nothing.

GetAttributes ( ) : AttributeCollection

Does nothing.

GetClassName ( ) : string

Gets the name of this class.

GetColumn ( int index ) : object

Gets the value at the specified position of this row.

GetComponentName ( ) : string

Returns null.

GetConverter ( ) : TypeConverter

Returns null.

GetDefaultEvent ( ) : System.ComponentModel.EventDescriptor

Returns null.

GetDefaultProperty ( ) : PropertyDescriptor

Returns null.

GetEditor ( Type editorBaseType ) : object

Returns null.

GetEvents ( Attribute attributes ) : EventDescriptorCollection

Does nothing.

GetProperties ( Attribute attributes ) : PropertyDescriptorCollection

Gets the values of the multidimensional array as properties.

GetPropertyOwner ( PropertyDescriptor pd ) : object

Gets the owner ArrayDataView.

SetColumnValue ( int index, object value ) : void

Sets a value to the element at the specified position of this row.

this ( string columnName ) : string

Gets the error message for the property with the given name.

Private Methods

Method Description
System ( ) : EventDescriptorCollection

Does nothing.

System ( ) : PropertyDescriptorCollection

Method Details

ArrayRowView() public method

Initializes a new instance of the ArrayRowView class.
public ArrayRowView ( ArrayDataView owner, int index ) : System
owner ArrayDataView
index int
return System

BeginEdit() public method

Does nothing.
public BeginEdit ( ) : void
return void

CancelEdit() public method

Does nothing.
public CancelEdit ( ) : void
return void

EndEdit() public method

Does nothing.
public EndEdit ( ) : void
return void

GetAttributes() public method

Does nothing.
public GetAttributes ( ) : AttributeCollection
return System.ComponentModel.AttributeCollection

GetClassName() public method

Gets the name of this class.
public GetClassName ( ) : string
return string

GetColumn() public method

Gets the value at the specified position of this row.
public GetColumn ( int index ) : object
index int The column index of the element to get.
return object

GetComponentName() public method

Returns null.
public GetComponentName ( ) : string
return string

GetConverter() public method

Returns null.
public GetConverter ( ) : TypeConverter
return System.ComponentModel.TypeConverter

GetDefaultEvent() public method

Returns null.
public GetDefaultEvent ( ) : System.ComponentModel.EventDescriptor
return System.ComponentModel.EventDescriptor

GetDefaultProperty() public method

Returns null.
public GetDefaultProperty ( ) : PropertyDescriptor
return System.ComponentModel.PropertyDescriptor

GetEditor() public method

Returns null.
public GetEditor ( Type editorBaseType ) : object
editorBaseType System.Type
return object

GetEvents() public method

Does nothing.
public GetEvents ( Attribute attributes ) : EventDescriptorCollection
attributes System.Attribute
return System.ComponentModel.EventDescriptorCollection

GetProperties() public method

Gets the values of the multidimensional array as properties.
public GetProperties ( Attribute attributes ) : PropertyDescriptorCollection
attributes System.Attribute
return System.ComponentModel.PropertyDescriptorCollection

GetPropertyOwner() public method

Gets the owner ArrayDataView.
public GetPropertyOwner ( PropertyDescriptor pd ) : object
pd System.ComponentModel.PropertyDescriptor
return object

SetColumnValue() public method

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.
return void

this() public method

Gets the error message for the property with the given name.
public this ( string columnName ) : string
columnName string
return string