Imagelist::smallIconHeight Method [AX 2012]

Retrieves the system metrics for the height of a small icon.

client public static int smallIconHeight()

Run On

Client

Return Value

Type: int
An integer that represents the height of a small icon.

The following example creates an image list that has the standard height and width for small icons, and then prints out the height of images in the list.

Imagelist list = new Imagelist( 
    Imagelist::smallIconWidth(), 
    Imagelist::smallIconHeight()); 
  
print list.height();   
pause;
Show: