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

The row name (A, B, C...).

Gets the column values as a list at the specified column name (A, B, C...) of the IZennoTable object.
Syntax

Parameters

columnName
Type: System.String

The row name (A, B, C...).

Example
The following code using IZennoTable Interface for removing row.
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
 
// remove row 
var result = table.GetColumn("A");
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
 
// remove row 
$result = $table->GetColumn("A");
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