.NET Matrix Library
DeleteRow Method
See Also  Send Feedback



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

Syntax

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

Parameters

row
Specifies the row for deletion.

Exceptions

ExceptionDescription
IndexOutOfBoundsExceptionrow 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