Interface ITableRow
- Namespace
- combit.Reporting.DataProviders
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents a row in a table, providing access to its columns and navigation of parent-child relationships.
public interface ITableRow
Properties
Columns
Gets a read-only collection of columns contained in this row.
ReadOnlyCollection<ITableColumn> Columns { get; }
Property Value
SupportsGetParentRow
Gets a value indicating whether the row supports retrieving a parent row.
bool SupportsGetParentRow { get; }
Property Value
TableName
Gets the name of the table to which this row belongs.
string TableName { get; }
Property Value
Methods
GetChildTable(ITableRelation)
Retrieves the child table that corresponds to the specified relation.
ITable GetChildTable(ITableRelation relation)
Parameters
relationITableRelationThe relation defining the child table to retrieve.
Returns
GetParentRow(ITableRelation)
Retrieves the parent row that corresponds to the specified relation.
ITableRow? GetParentRow(ITableRelation relation)
Parameters
relationITableRelationThe relation defining the parent row to retrieve.