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

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

Removes the column at the specified name (A, B, C...) of the IZennoTable object.
Syntax
void DeleteColumn( 
   string columnName
)

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 
table.DeleteColumn("A");
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
 
// remove row 
$table->DeleteColumn("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