DataTable Constructor
Supported by the .NET Compact Framework. |
Overloaded. Initializes a new instance of the DataTable class. |
CaseSensitive
Supported by the .NET Compact Framework. |
Indicates whether string comparisons within the table are case-sensitive. |
ChildRelations
Supported by the .NET Compact Framework. |
Gets the collection of child relations for this DataTable. |
Columns
Supported by the .NET Compact Framework. |
Gets the collection of columns that belong to this table. |
Constraints
Supported by the .NET Compact Framework. |
Gets the collection of constraints maintained by this table. |
Container (inherited from MarshalByValueComponent) |
Gets the container for the component. |
DataSet
Supported by the .NET Compact Framework. |
Gets the DataSet that this table belongs to. |
DefaultView
Supported by the .NET Compact Framework. |
Gets a customized view of the table which may include a filtered view, or a cursor position. |
DesignMode (inherited from MarshalByValueComponent) |
Gets a value indicating whether the component is currently in design mode. |
DisplayExpression
Supported by the .NET Compact Framework. |
Gets or sets the expression that will return a value used to represent this table in the user interface. |
ExtendedProperties
Supported by the .NET Compact Framework. |
Gets the collection of customized user information. |
HasErrors
Supported by the .NET Compact Framework. |
Gets a value indicating whether there are errors in any of the rows in any of the tables of the DataSet to which the table belongs. |
Locale
Supported by the .NET Compact Framework. |
Gets or sets the locale information used to compare strings within the table. |
MinimumCapacity
Supported by the .NET Compact Framework. |
Gets or sets the initial starting size for this table. |
Namespace
Supported by the .NET Compact Framework. |
Gets or sets the namespace for the XML represenation of the data stored in the DataTable. |
ParentRelations
Supported by the .NET Compact Framework. |
Gets the collection of parent relations for this DataTable. |
Prefix
Supported by the .NET Compact Framework. |
Gets or sets the namespace for the XML represenation of the data stored in the DataTable. |
PrimaryKey
Supported by the .NET Compact Framework. |
Gets or sets an array of columns that function as primary keys for the data table. |
Rows
Supported by the .NET Compact Framework. |
Gets the collection of rows that belong to this table. |
Site |
Overridden. Gets or sets an System.ComponentModel.ISite for the DataTable. |
TableName
Supported by the .NET Compact Framework. |
Gets or sets the name of the DataTable. |
AcceptChanges
Supported by the .NET Compact Framework. |
Commits all the changes made to this table since the last time AcceptChanges was called. |
BeginInit
Supported by the .NET Compact Framework. |
Begins the initialization of a DataTable that is used on a form or used by another component. The initialization occurs at runtime. |
BeginLoadData
Supported by the .NET Compact Framework. |
Turns off notifications, index maintenance, and constraints while loading data. |
Clear
Supported by the .NET Compact Framework. |
Clears the DataTable of all data. |
Clone
Supported by the .NET Compact Framework. |
Clones the structure of the DataTable, including all DataTable schemas and constraints. |
Compute
Supported by the .NET Compact Framework. |
Computes the given expression on the current rows that pass the filter criteria. |
Copy |
Copies both the structure and data for this DataTable. |
Dispose (inherited from MarshalByValueComponent) |
Overloaded. Releases the resources used by the MarshalByValueComponent. |
EndInit
Supported by the .NET Compact Framework. |
Ends the initialization of a DataTable that is used on a form or used by another component. The initialization occurs at runtime. |
EndLoadData
Supported by the .NET Compact Framework. |
Turns on notifications, index maintenance, and constraints after loading data. |
Equals (inherited from Object)
Supported by the .NET Compact Framework. |
Overloaded. Determines whether two Object instances are equal. |
GetChanges |
Overloaded. Gets a copy of the DataTable containing all changes made to it since it was last loaded, or since AcceptChanges was called. |
GetErrors
Supported by the .NET Compact Framework. |
Gets an array of DataRow objects that contain errors. |
GetHashCode (inherited from Object)
Supported by the .NET Compact Framework. |
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetService (inherited from MarshalByValueComponent) |
Gets the implementer of the IServiceProvider. |
GetType (inherited from Object)
Supported by the .NET Compact Framework. |
Gets the Type of the current instance. |
ImportRow
Supported by the .NET Compact Framework. |
Copies a DataRow into a DataTable, preserving any property settings, as well as original and current values. |
LoadDataRow
Supported by the .NET Compact Framework. |
Finds and updates a specific row. If no matching row is found, a new row is created using the given values. |
NewRow
Supported by the .NET Compact Framework. |
Creates a new DataRow with the same schema as the table. |
RejectChanges
Supported by the .NET Compact Framework. |
Rolls back all changes that have been made to the table since it was loaded, or the last time AcceptChanges was called. |
Reset
Supported by the .NET Compact Framework. |
Resets the DataTable to its original state. |
Select
Supported by the .NET Compact Framework. |
Overloaded. Gets an array of DataRow objects. |
ToString
Supported by the .NET Compact Framework. |
Overridden. Gets the TableName and DisplayExpression, if there is one as a concatenated string. |
ColumnChanged |
Occurs after a value has been changed for the specified DataColumn in a DataRow. |
ColumnChanging |
Occurs when a value is being changed for the specified DataColumn in a DataRow. |
Disposed (inherited from MarshalByValueComponent) |
Adds an event handler to listen to the Disposed event on the component. |
RowChanged |
Occurs after a DataRow has been changed successfully. |
RowChanging |
Occurs when a DataRow is changing. |
RowDeleted |
Occurs after a row in the table has been deleted. |
RowDeleting |
Occurs before a row in the table is about to be deleted. |
DataTable Constructor |
Overloaded. Initializes a new instance of the DataTable class. |
Events (inherited from MarshalByValueComponent) |
Gets the list of event handlers that are attached to this component. |
CreateInstance |
Creates a new instance of the DataTable class. |
Dispose (inherited from MarshalByValueComponent) |
Overloaded. Releases the resources used by the MarshalByValueComponent. |
Finalize (inherited from Object)
Supported by the .NET Compact Framework. |
Overridden. Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
In C# and C++, finalizers are expressed using destructor syntax. |
MemberwiseClone (inherited from Object)
Supported by the .NET Compact Framework. |
Creates a shallow copy of the current Object. |
NewRowFromBuilder
Supported by the .NET Compact Framework. |
Creates a new row from an existing row. |
OnColumnChanged
Supported by the .NET Compact Framework. |
Raises the ColumnChanged event. |
OnColumnChanging
Supported by the .NET Compact Framework. |
Raises the ColumnChanging event. |
OnRemoveColumn |
Notifies the DataTable that a DataColumn is being removed. |
OnRowChanged
Supported by the .NET Compact Framework. |
Raises the RowChanged event. |
OnRowChanging
Supported by the .NET Compact Framework. |
Raises the RowChanging event. |
OnRowDeleted
Supported by the .NET Compact Framework. |
Raises the RowDeleted event. |
OnRowDeleting
Supported by the .NET Compact Framework. |
Raises the RowDeleting event. |