AfraLisp Blog

The AutoLisp/Visual Lisp/VBA Resource Website

AfraLisp Blog

Home Newsletter Utter Rubbish Coding Tips AutoCAD Tips Contact Downloads WAUN

children_fixed_height

children_fixed_height

Children_Fixed_Height Not Set.

children_fixed_height

Children_Fixed_Height Set to True.

This attribute specifies the default height for all the tiles in a cluster.
It does not override a child's height attribute if it is specified. Possible values are: true or false. (default: false


DCL Code Sample 

lisp49l : dialog {				//dialog name
          label = "children_fixed_height";	//give it a label

	: row {					//define a row
          children_fixed_height = true;		//fix the height

	: 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";			//make a list
	  height = 5;				//define height
	}

	: 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;				//define height
	}
	
	}					//end row

        ok_cancel ;				//predefined OK/Cancel button

        }					//end dialog
 
The AutoLisp/Visual Lisp/VBA Resource Website

Copyright © 1999-Perpetuity by AfraLisp

All rights reserved.
Information in this document is subject to change without notice.
Site created and maintained by Kenny Ramage

The AutoLisp/Visual Lisp/VBA Resource Website