Call this function to get the name of the Item.
Syntax: |
---|
DlxItem.GetName() |
Return Value
Returns the name of the Item.
Example
Copy code | |
---|---|
var prj = DlxApp.GetJob().GetProject();
var items = prj.GetChildCount();
for (var index = 0; index < items; index++)
{
DlxApp.Trace(prj.GetChildItem(index).GetName());
}
|