Call this function to specify the name of the Item.
Syntax: |
---|
DlxItem.SetName(name) |
Parameters
Parameter | Description |
---|---|
name | The name of the Item. |
Return Value
If the Item name is set correctly it returns true otherwise it returns false.
Example
Copy code | |
---|---|
if (DlxApp.GetJob().GetProject("prj1").IsValid())
{
DlxApp.GetJob().GetProject("prj1").SetName("prj2");
}
|