ITableRow Interface

A single row in an Oracle Table.

C# Syntax

public interface ITableRow 
Public Properties
 NameDescription
PropertyCells

The collection of ITableCell objects in the row.

C# Syntax  

ReadOnlyCollection<ITableCell> Cells {get;}
Top