AfraLISP - Learn AutoLISP for AutoCAD productivity

height

This attribute specifies the height of tile. The height value must be an integer or a real number. The height of image tiles and image buttons must be specified.

Note: The height of a tile is the MINIMUM value.

height not set
Height Not Set.

height set to 15
Height Set to 15.

Possible values are platform dependent.

DCL Code Sample

height : dialog {				//dialog name
          label = "height";			//give it a label
 
	: list_box {				//define a list box
	  key = "lb1";				//give it a name
	  label = "List Box 1";			//give it a label
	  list = "1\n2\n3\n4\n5\n6\n7\n8\n9";	//make a list
	  height = 15;				//give it a height
	}					//end list box
 
        ok_cancel ;				//predefined OK/Cancel button
 
        }					//end dialog