AfraLisp Blog

The AutoLisp/Visual Lisp/VBA Resource Website

AfraLisp Blog

Home Newsletter Utter Rubbish Coding Tips AutoCAD Tips Contact Downloads WAUN

children_fixed_width

children_fixed_height

Children_Fixed_Width Not Set.

children_fixed_height

Children_Fixed_Width Set to True.

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


DCL Code Sample 

lisp49m : dialog {				//dialog name
          label = "children_fixed_width";	//give it a label

	: column {				//define column
	  children_fixed_width = true;		//fix the width

	: edit_box {				//define an edit box
	  key = "eb1";				//give it a name
	  label = "Edit Box 1";			//give it a label
	  width = 10;				//give it a width
	  value = "Edit Box 1";			//fill it
	}					//end edit box

	: edit_box {				//define an edit box
	  key = "eb2";				//give it a name
	  label = "Edit Box 2";			//give it a label
	  width = 10;				//give it a width
	  value = "Edit Box 2";			//fill it
	}					//end edit box

	}					//end column

	spacer;					//a spacer

        ok_cancel_help ;			//predefined OK/Cancel/Help 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