IAdmListItemCustom

The IAdmListItemCustom interface represents a custom item in the IAdmListItems list.

Inheritance: IAdmListItem

Properties

  • Property

  • Description

  • Icon

  • Gets or sets the icon index of the item.

Details

Icon

Gets or sets the icon index of the item.

  • Type:
  • int
  • Access:
  • Read/Write

Remarks

To obtain a list of icons and corresponding icon indexes, create a report generated by executing the following PowerShell script:

$iconsCount = 100

for ($i = 0; $i -lt $iconsCount; $i++)
{
    $Context.Items.Add($i, "Icon index $i", "Icon")
}

Requirements

Minimum required version: 2018.1

See also