Creates a new sub-folder in the specified folder.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: 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 NewFolder( BCFolder parent, BCFolderType type, string name ) |
Visual Basic |
---|
<ObsoleteAttribute("This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")> _ Public Function NewFolder ( _ parent As BCFolder, _ type As BCFolderType, _ name As String _ ) As BCFolder |
Visual C++ |
---|
[ObsoleteAttribute(L"This method might be removed from future versions. Use the "NewFolder" method of the parent folder.")] public: BCFolder^ NewFolder( BCFolder^ parent, BCFolderType^ type, String^ name ) |
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 sub-folder type to create. If nullNothingnullptra null reference (Nothing in Visual Basic), then a normal folder is created (the AMFolder type).
- name
- Type: System..::..String
The name of the sub-folder to create. If nullNothingnullptra null reference (Nothing in Visual Basic) or an empty string then the sub-folder will have auto-generated name.
Return Value
The created sub-folder.Remarks
This method might be removed from future versions.
Use the NewFolder method of the parent folder.