ClassCustomizableDataTable
Definition
Namespace:ArtOfTest.Common.Design.Data
Assembly:ArtOfTest.WebAii.Design.dll
Syntax:
public class CustomizableDataTable : DataTable, IComponent, IDisposable, IServiceProvider, IListSource, ISupportInitializeNotification, ISupportInitialize, IXmlSerializable, INotifyPropertyChanged, ISerializable
Inheritance: objectMarshalByValueComponentDataTableCustomizableDataTable
Implements:
Inherited Members
Constructors
CustomizableDataTable()
Declaration
public CustomizableDataTable()
CustomizableDataTable(SerializationInfo, StreamingContext)
Declaration
public CustomizableDataTable(SerializationInfo info, StreamingContext context)
Parameters
info
context
Properties
Methods
AddColumns(int)
Add columns to the data table.
Declaration
public void AddColumns(int count)
Parameters
count
The number of columns to add
AddRows(int)
Add rows to the datatable.
Declaration
public void AddRows(int count)
Parameters
count
The number of rows to add.
OnPropertyChangedEvent(string)
Declaration
protected void OnPropertyChangedEvent(string propertyName)
Parameters
propertyName
RemoveColumn(string)
Remove a specific column name.
Declaration
public void RemoveColumn(string columnName)
Parameters
columnName
The column name to remove.
RemoveColumns(int)
Remove a number of columns from this datatable starting from the end.
Declaration
public void RemoveColumns(int count)
Parameters
count
The number of columns to remove.
RemoveColumns(int, int)
Removes columns from the datatable.
RemoveRows(int)
Remove a set of rows from the end of the data table.
RenameColumn(string, string)
Rename a column name.
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Value
Implements