Class RecordsInTableCollection
Represents the class that supports read-only collection of sorted Record elements that are children of a Table. An instance of this collection is returned by the Records property of a Table object. This collection contains all records, it is not filtered.
The collection provides support for determining a record's position in the grouped table using the IndexOf(Record) method.
Implements
Inherited Members
Namespace: Syncfusion.Grouping
Assembly: Syncfusion.Grouping.Base.dll
Syntax
public class RecordsInTableCollection : RecordsInTableCollectionBase, IList, ICollection, IEnumerable, IDisposable
Methods
Delete(Record)
Deletes the given record from the table.
Declaration
public void Delete(Record record)
Parameters
Type | Name | Description |
---|---|---|
Record | record | The current record. |
DeleteAll()
Deletes All the records from the table.
Declaration
public void DeleteAll()
DeleteRecords(Record[])
Deletes the given collection of records from the table.
Declaration
public void DeleteRecords(Record[] records)
Parameters
Type | Name | Description |
---|---|---|
Record[] | records | The specific array of records. |
DeleteRecords(RecordsInTableCollection)
Deletes the given collection of records from the table.
Declaration
public void DeleteRecords(RecordsInTableCollection records)
Parameters
Type | Name | Description |
---|---|---|
RecordsInTableCollection | records | The specific records to be deleted. |
DeleteRecords(SelectedRecordsCollection)
Deletes the given collection of selected records from the table.
Declaration
public void DeleteRecords(SelectedRecordsCollection selectedRecords)
Parameters
Type | Name | Description |
---|---|---|
SelectedRecordsCollection | selectedRecords | The specific selected records. |
SelectAll()
Selects all the records from the table.
Declaration
public void SelectAll()