Creates a new project 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 "NewProject" method of the parent folder.")] public BCProject NewProject( BCFolder parent, BCProjectDefinition definition, string name ) |
Visual Basic |
---|
<ObsoleteAttribute("This method might be removed from future versions. Use the "NewProject" method of the parent folder.")> _ Public Function NewProject ( _ parent As BCFolder, _ definition As BCProjectDefinition, _ name As String _ ) As BCProject |
Visual C++ |
---|
[ObsoleteAttribute(L"This method might be removed from future versions. Use the "NewProject" method of the parent folder.")] public: BCProject^ NewProject( BCFolder^ parent, BCProjectDefinition^ definition, String^ name ) |
Parameters
- parent
- Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCFolder
The parent folder of the project sub-folder to create.
- definition
- Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCProjectDefinition
The project definition of the project to create.
- name
- Type: System..::..String
The name of the project to create.
Return Value
The created project sub-folder.Remarks
This method might be removed from future versions.
Use the NewProject method of the parent folder.