AfraLisp Blog

The AutoLisp/Visual Lisp/VBA Resource Website

AfraLisp Blog

Home Newsletter Utter Rubbish Coding Tips AutoCAD Tips Contact Downloads WAUN

fixed_width

fixed_height

Fixed_Width Not Set.

fixed_height

Fixed_Width Set to True.

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

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


DCL Code Sample 

lisp49c : dialog {				//dialog name
          label = "fixed_width";		//give it a label

	: edit_box {				//define an edit box
	  key = "eb1";				//give it a name
	  label = "Edit Box 1";			//give it a label
	  width = 24;				//give it a width
	  value = "A SMALL Box";		//give it a value
	  fixed_width = true;			//fix the width
	}					//end edit box

	: edit_box {				//define an edit box
	  key = "eb2";				//give it a name
	  label = "Edit Box 2";			//give it a label
	  value = "...This is a LARGE Box...";	//give it a value
	}					//end edit box

        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