Version

DeleteColumns Method

Deletes one or more columns from the table
Syntax
'Declaration
 
Public Sub DeleteColumns( _
   ByVal tableColumnIndex As System.Integer, _
   Optional ByVal count As System.Integer _
) 
public void DeleteColumns( 
   System.int tableColumnIndex,
   System.int count
)

Parameters

tableColumnIndex
The deletion start relative to the first column in the table.
count
The number of columns to delete.
Exceptions
ExceptionDescription
System.InvalidOperationExceptionIf the operation is not allowed, e.g. if it would cause data to be shifted off the worksheet.
System.IndexOutOfRangeExceptionIf index is negative.
System.ArgumentOutOfRangeExceptionIf count is less than 1 or greater than or equal all the columns in the table.
Requirements

Target Platforms: Windows 8.1, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

View on GitHub