Exago .NET API Documentation
GetColumn(Int32) Method
Example 
WebReports.Api.Reports Namespace > Entity Class > GetColumn Method : GetColumn(Int32) Method
The 0-based index of the column as it appears in the Data Source.
Syntax
public EntityColumn GetColumn( 
   System.int idx
)

Parameters

idx
The 0-based index of the column as it appears in the Data Source.

Return Value

An EntityColumn object representing the requested column.
Example
Get the first column in the Entity object myNewEntity and add it as a Unique Key Field.
myNewEntity.KeyColumns.Add(new KeyColumn(myNewEntity.GetColumn(0).ActualFullName));
See Also

Reference

Entity Class
Entity Members
Overload List