Call this function to get the name of the Item.

syntaxSyntax:
DlxItem.GetName()

Return Value

Returns the name of the Item.

Example

  Copy codeCopy code
var prj = DlxApp.GetJob().GetProject();
var items = prj.GetChildCount();
for (var index = 0; index < items; index++)
{
  DlxApp.Trace(prj.GetChildItem(index).GetName());
}

See also