ITableRow Interface
A single row in a PowerBuilder table.

C# Syntax

public interface ITableRow 
Public Properties
 NameDescription
PropertyCells

Returns the collection of ITableCell objects in the row.

C# Syntax

ReadOnlyCollection<ITableCell> Cells {get;}
Top