View list of icons and icon indexes
To add a custom object to a report you need to specify an icon index. In order to obtain a list of icons and corresponding indexes, create a report as follows:
-
Launch Adaxes Administration console.
How { #collapse1}
-
On the computer where Adaxes Administration console is installed, open Windows Start menu.
-
Click Adaxes Administration Console.
-
-
In the Console Tree, expand the Adaxes service node (the icon represents service nodes).
-
Right-click Reports.
-
In the context menu, navigate to New and click Report.
-
On the 1st step of the wizard, select Script.
-
Click Next until you reach the Script page.
-
Paste the below script into the corresponding field.
$iconsCount = 100 for ($i = 0; $i -lt $iconsCount; $i++) { $Context.Items.Add($i, "Icon index $i", "Icon") }
-
Finish creating the report.