ZennoLab Assemblies Documentation
GetColumn(Int32) Method
Example 
ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface > GetColumn Method : GetColumn(Int32) Method
Type: System.Int32

The zero-based index of the row to remove.

Gets the column values as a list at the specified index of the IZennoTable object.
Syntax

Parameters

columnNumber
Type: System.Int32

The zero-based index of the row to remove.

Example
The following code using IZennoTable Interface for removing column.
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
 
// remove row 
var result = table.GetColumn(0);
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
 
// remove row 
$result = $table->GetColumn(0);
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

IZennoTable Interface
IZennoTable Members
Overload List
ITables Interface
DeleteColumn Method