.NET Matrix Library
DeleteColumn Method
See Also  Send Feedback



column
Specifies the column for deletion.
Deletes a column of the current matrix.

Syntax

Visual Basic (Declaration) 
Public Sub DeleteColumn( _
   ByVal column As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As CMatrix
Dim column As Integer
 
instance.DeleteColumn(column)
C# 
public void DeleteColumn( 
   int column
)
C++/CLI 
public:
void DeleteColumn( 
   int column
) 

Parameters

column
Specifies the column for deletion.

Exceptions

ExceptionDescription
IndexOutOfBoundsExceptioncolumn exceeds matrix size

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library