Delete certain item from collection

Namespace:  FlowMap
Assembly:  FlowMap (in FlowMap.dll)

Syntax

Visual Basic (Declaration)
Public Sub DeleteItem ( _
	_level As Integer, _
	_objDescr As String, _
	_rootDescr As String, _
	_childDescr As String _
)
C#
public void DeleteItem(
	int _level,
	string _objDescr,
	string _rootDescr,
	string _childDescr
)
Visual C++
public:
void DeleteItem(
	int _level, 
	String^ _objDescr, 
	String^ _rootDescr, 
	String^ _childDescr
)
JavaScript
function deleteItem(_level, _objDescr, _rootDescr, _childDescr);

Parameters

_level
Type: System..::.Int32
Item level (0 -> Flow Class, 1->Root, 2->Child (leaf)
_objDescr
Type: System..::.String
Flow Class Description
_rootDescr
Type: System..::.String
Root Desctiption
_childDescr
Type: System..::.String
Child description

See Also