Creates a new level at the desired index position.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCFieldPathLevel NewLevel(
	string name,
	int index
)
Visual Basic
Public Function NewLevel ( _
	name As String, _
	index As Integer _
) As BCFieldPathLevel
Visual C++
public:
BCFieldPathLevel^ NewLevel(
	String^ name, 
	int index
)

Parameters

name
Type: System..::..String
The name of the level to create.
index
Type: System..::..Int32
The index position of the level to create. If -1 then the level will be appended at the end.

Return Value

The created level.

See Also