C# Class Accord.Controls.ArrayDataView

Represents a data bondable, customized view of two dimensional array
Inheritance: IBindingList
Afficher le fichier Open project: accord-net/framework Class Usage Examples

Méthodes publiques

Méthode Description
Add ( object value ) : int

Does nothing.

AddIndex ( PropertyDescriptor property ) : void

Does nothing.

AddNew ( ) : object

Does nothing.

ApplySort ( PropertyDescriptor property, System direction ) : void

Does nothing.

ArrayDataView ( Array array ) : System

Initializes a new ArrayDataView from array.

ArrayDataView ( Array array, object columnNames ) : System

Initializes a new ArrayDataView from array with custom column names.

ArrayDataView ( Array array, object columnNames, object rowNames ) : System

Initializes a new ArrayDataView from array with custom column names.

ArrayDataView ( Array array, string columnNames ) : System

Initializes a new ArrayDataView from array with custom column names.

ArrayDataView ( Array array, string columnNames, string rowNames ) : System

Initializes a new ArrayDataView from array with custom column names.

Clear ( ) : void

Does nothing.

Contains ( object value ) : bool

Does nothing.

CopyTo ( Array array, int index ) : void

Multidimensional arrays do not support Array copying.

Find ( PropertyDescriptor property, object key ) : int

Does nothing.

GetEnumerator ( ) : System.Collections.IEnumerator

Gets the array enumerator.

IndexOf ( object value ) : int

Does nothing.

Insert ( int index, object value ) : void

Does nothing.

Remove ( object value ) : void

Does nothing.

RemoveAt ( int index ) : void

Does nothing.

RemoveIndex ( PropertyDescriptor property ) : void

Does nothing.

RemoveSort ( ) : void

Does nothing.

Reset ( ) : void

Resets the data binding.

this ( int index ) : object

Gets a row from this view.

Private Methods

Méthode Description
OnListChanged ( ListChangedEventArgs e ) : void

Method Details

Add() public méthode

Does nothing.
public Add ( object value ) : int
value object
Résultat int

AddIndex() public méthode

Does nothing.
public AddIndex ( PropertyDescriptor property ) : void
property System.ComponentModel.PropertyDescriptor
Résultat void

AddNew() public méthode

Does nothing.
public AddNew ( ) : object
Résultat object

ApplySort() public méthode

Does nothing.
public ApplySort ( PropertyDescriptor property, System direction ) : void
property System.ComponentModel.PropertyDescriptor
direction System
Résultat void

ArrayDataView() public méthode

Initializes a new ArrayDataView from array.
public ArrayDataView ( Array array ) : System
array System.Array array of data.
Résultat System

ArrayDataView() public méthode

Initializes a new ArrayDataView from array with custom column names.
public ArrayDataView ( Array array, object columnNames ) : System
array System.Array array of data.
columnNames object collection of column names.
Résultat System

ArrayDataView() public méthode

Initializes a new ArrayDataView from array with custom column names.
public ArrayDataView ( Array array, object columnNames, object rowNames ) : System
array System.Array Array of data.
columnNames object Collection of column names.
rowNames object Collection of row names.
Résultat System

ArrayDataView() public méthode

Initializes a new ArrayDataView from array with custom column names.
public ArrayDataView ( Array array, string columnNames ) : System
array System.Array array of data.
columnNames string collection of column names.
Résultat System

ArrayDataView() public méthode

Initializes a new ArrayDataView from array with custom column names.
public ArrayDataView ( Array array, string columnNames, string rowNames ) : System
array System.Array Array of data.
columnNames string Collection of column names.
rowNames string Collection of row names.
Résultat System

Clear() public méthode

Does nothing.
public Clear ( ) : void
Résultat void

Contains() public méthode

Does nothing.
public Contains ( object value ) : bool
value object
Résultat bool

CopyTo() public méthode

Multidimensional arrays do not support Array copying.
public CopyTo ( Array array, int index ) : void
array System.Array
index int
Résultat void

Find() public méthode

Does nothing.
public Find ( PropertyDescriptor property, object key ) : int
property System.ComponentModel.PropertyDescriptor
key object
Résultat int

GetEnumerator() public méthode

Gets the array enumerator.
public GetEnumerator ( ) : System.Collections.IEnumerator
Résultat System.Collections.IEnumerator

IndexOf() public méthode

Does nothing.
public IndexOf ( object value ) : int
value object
Résultat int

Insert() public méthode

Does nothing.
public Insert ( int index, object value ) : void
index int
value object
Résultat void

Remove() public méthode

Does nothing.
public Remove ( object value ) : void
value object
Résultat void

RemoveAt() public méthode

Does nothing.
public RemoveAt ( int index ) : void
index int
Résultat void

RemoveIndex() public méthode

Does nothing.
public RemoveIndex ( PropertyDescriptor property ) : void
property System.ComponentModel.PropertyDescriptor
Résultat void

RemoveSort() public méthode

Does nothing.
public RemoveSort ( ) : void
Résultat void

Reset() public méthode

Resets the data binding.
public Reset ( ) : void
Résultat void

this() public méthode

Gets a row from this view.
public this ( int index ) : object
index int
Résultat object