ITableCell Interface
A single cell in a PowerBuilder table.

C# Syntax

public interface ITableCell 
Public Properties
 NameDescription
PropertyValue

The content of this cell.

C# Syntax

string Value {get;}
Top
Public Methods
 NameDescription
MethodSetValue

Sets the cell value.

C# Syntax

void SetValue( 
   string value
)

Parameters

value
Optional: The value
Top