Imagelist.setOverlayImage Method [AX 2012]
Adds an image to the list of images to be used as overlay masks.
The following example creates an image list that has three images, and then sets the last image that will be used as an overlay mask.
Imagelist list = new Imagelist(
Imagelist::iconWidth(),
Imagelist::iconHeight() );
list.add(new Image(824)); // Image 0
list.add(new Image(815)); // Image 1
list.add(new Image(936)); //Image 2
list.setOverlayImage (2,1);
Community Additions
ADD
Show: