Try OpenEdge Now
skip to main content
ABL Reference
Class, Interface, and Enumeration Reference : Progress.Data.TableDesc class
 

Progress.Data.TableDesc class

(Windows only; GUI for .NET only)
A design-time object that the Visual Designer uses to store logical schema information that you specify for the data source associated with a Progress.Data.BindingSource class instance. The specified logical schema can represent a single temp-table or a hierarchy of temp-tables in a ProDataSet, where the current instance describes the parent for a specified set of child tables.
Note: This class is designed for use by the Visual Designer. Though you can do so, it is not expected that you will use this in your own code.

Serializable:

No

Constructor

PUBLIC TableDesc ( INPUT name AS CHARACTER ,
                   INPUT columns AS CLASS "Progress.Data.ColumnPropDesc[]" ,
                   INPUT children AS CLASS "Progress.Data.TableDesc[]" )
name
A CHARACTER expression that represents a table name for the logical schema.
columns
An array of Progress.Data.ColumnPropDesc class instances that describe the fields of the table represented by this TableDesc instance.
children
An array of Progress.Data.TableDesc class instances that describe child tables of the parent table represented by this instance. If this table has no child tables, children is set to the Unknown value (?).

Super Class

System.Object class (from the .NET Framework)

Interfaces

System.Runtime.Serialization.ISerializable interface (from the .NET Framework).

Public Properties

The public properties defined by this class are not supported for use in applications.

Public Methods

The public methods defined by this class are not supported for use in applications.

Public Events

The public events defined by this class are not supported for use in applications.

Note

For information on the public class members inherited from the System.Object class, refer to the .NET Framework class library.

See also

Progress.Data.BindingSource class, Progress.Data.ColumnPropDesc class, TableSchema property