C# 클래스 Accord.Controls.ArrayDataView

Represents a data bondable, customized view of two dimensional array
상속: IBindingList
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
OnListChanged ( ListChangedEventArgs e ) : void

메소드 상세

Add() 공개 메소드

Does nothing.
public Add ( object value ) : int
value object
리턴 int

AddIndex() 공개 메소드

Does nothing.
public AddIndex ( PropertyDescriptor property ) : void
property System.ComponentModel.PropertyDescriptor
리턴 void

AddNew() 공개 메소드

Does nothing.
public AddNew ( ) : object
리턴 object

ApplySort() 공개 메소드

Does nothing.
public ApplySort ( PropertyDescriptor property, System direction ) : void
property System.ComponentModel.PropertyDescriptor
direction System
리턴 void

ArrayDataView() 공개 메소드

Initializes a new ArrayDataView from array.
public ArrayDataView ( Array array ) : System
array System.Array array of data.
리턴 System

ArrayDataView() 공개 메소드

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.
리턴 System

ArrayDataView() 공개 메소드

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.
리턴 System

ArrayDataView() 공개 메소드

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.
리턴 System

ArrayDataView() 공개 메소드

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.
리턴 System

Clear() 공개 메소드

Does nothing.
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Does nothing.
public Contains ( object value ) : bool
value object
리턴 bool

CopyTo() 공개 메소드

Multidimensional arrays do not support Array copying.
public CopyTo ( Array array, int index ) : void
array System.Array
index int
리턴 void

Find() 공개 메소드

Does nothing.
public Find ( PropertyDescriptor property, object key ) : int
property System.ComponentModel.PropertyDescriptor
key object
리턴 int

GetEnumerator() 공개 메소드

Gets the array enumerator.
public GetEnumerator ( ) : System.Collections.IEnumerator
리턴 System.Collections.IEnumerator

IndexOf() 공개 메소드

Does nothing.
public IndexOf ( object value ) : int
value object
리턴 int

Insert() 공개 메소드

Does nothing.
public Insert ( int index, object value ) : void
index int
value object
리턴 void

Remove() 공개 메소드

Does nothing.
public Remove ( object value ) : void
value object
리턴 void

RemoveAt() 공개 메소드

Does nothing.
public RemoveAt ( int index ) : void
index int
리턴 void

RemoveIndex() 공개 메소드

Does nothing.
public RemoveIndex ( PropertyDescriptor property ) : void
property System.ComponentModel.PropertyDescriptor
리턴 void

RemoveSort() 공개 메소드

Does nothing.
public RemoveSort ( ) : void
리턴 void

Reset() 공개 메소드

Resets the data binding.
public Reset ( ) : void
리턴 void

this() 공개 메소드

Gets a row from this view.
public this ( int index ) : object
index int
리턴 object