adds a row to your nListView with as many values as you have columns

Namespace:  nControls
Assembly:  nListView (in nListView.dll) Version: 2.1.0.0 (2.1)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void addRow(
	params string[] values
)
Public Sub addRow ( _
	ParamArray values As String() _
)
public:
void addRow(
	... array<String^>^ values
)

Parameters

values
array< String >[]()[]
make sure the first parameter is your key value for that row, then put as many elements after that as you have columns

See Also