ITab Interface
A single tab item belonging to a PowerBuilder tab control.

C# Syntax

public interface ITab 
Public Properties
 NameDescription
PropertyIsSelected

Indicates whether the tab item is selected.

C# Syntax

bool IsSelected {get;}
PropertyText

The text of the tab item.  

C# Syntax

string Text {get;}
Top