AfraLISP - Learn AutoLISP for AutoCAD productivity

fixed_height

This attribute specifies whether a tiles height is allowed to fill the available white space. If this attribute is true, the tile will be restricted to it's preset height attribute.

fixed_height false
Fixed_Height Not Set.

fixed_height true
Fixed_Height Set to True.

Possible values are: true or false. (default: false).

DCL Code Sample

fixed_height : dialog {				//dialog name
          label = "fixed_height";		//give it a label
 
	: row {					//define a row
 
	: 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
	}
 
	: list_box {				//define a list box
	  key = "lb2";				//give it a name
	  label = "List Box 2";			//give it a label
	  list = "A\nB\nC\nD";			//make a list
	  height = 5;				//set the height
	  fixed_height = true;			//fix the height
	  alignment = top;			//align to top
	}					//end list box
	
	}					//end row
 
        ok_cancel ;				//predefined OK/Cancel button
 
        }					//end dialog