Share via


ProjectListNode.addProject Method

Definition

Overloads

addProject(String)

Adds a new project to the list.

addProject(String, String)

addProject(String)

Adds a new project to the list.

public:
 virtual Dynamics::AX::Application::ProjectNode ^ addProject(System::String ^ text1);
public virtual Dynamics.AX.Application.ProjectNode addProject (string text1);
abstract member addProject : string -> Dynamics.AX.Application.ProjectNode
override this.addProject : string -> Dynamics.AX.Application.ProjectNode
Public Overridable Function addProject (text1 As String) As ProjectNode

Parameters

text1
String

Returns

The newly added projectNode.

Applies to

addProject(String, String)

public:
 virtual Dynamics::AX::Application::ProjectNode ^ addProject(System::String ^ _projectName, System::String ^ _projectClass);
public virtual Dynamics.AX.Application.ProjectNode addProject (string _projectName, string _projectClass);
abstract member addProject : string * string -> Dynamics.AX.Application.ProjectNode
override this.addProject : string * string -> Dynamics.AX.Application.ProjectNode
Public Overridable Function addProject (_projectName As String, _projectClass As String) As ProjectNode

Parameters

_projectName
String

The name of the projecttype; optional. This should be the name of a class associated with the project (see the setProjectClass method). If no value is supplied, the project becomes a standard project.

_projectClass
String

The name of the projecttype; optional. This should be the name of a class associated with the project (see the setProjectClass method). If no value is supplied, the project becomes a standard project.

Returns

Applies to