Creates a new sub-folder with the specified type and name.

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#
[ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")]
public BCFolder NewConfigurableFolder(
	BCFolder parent,
	BCFolderType type
)
Visual Basic
<ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")> _
Public Function NewConfigurableFolder ( _
	parent As BCFolder, _
	type As BCFolderType _
) As BCFolder
Visual C++
[ObsoleteAttribute(L"This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")]
public:
BCFolder^ NewConfigurableFolder(
	BCFolder^ parent, 
	BCFolderType^ type
)

Parameters

parent
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCFolder
The parent folder of the sub-folder to create.
type
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCFolderType
The type of the sub-folder to create.

Return Value

The created sub-folder.

Remarks

This method might be removed from future versions. Use the NewFolder method of the parent folder.

See Also