AfraLisp Blog

The AutoLisp/Visual Lisp/VBA Resource Website

AfraLisp Blog

Home Newsletter Utter Rubbish Coding Tips AutoCAD Tips Contact Downloads WAUN

width

width

Width Not Set.

width

Width Set to 30.

This attribute specifies the width of tile. The width value must be an integer or a real value. The width of image tiles and image buttons must be specified.
Note: The width of a tile is the MINIMUM value.

Possible values are platform dependent.


DCL Code Sample 

lisp49e : dialog {				//dialog name
          label = "width";			//give it a label

	: edit_box {				//define an edit box
	  key = "eb1";				//give it a name
	  value = "This is a longer box";	//give it a value
	  width = 30;				//give it a width
	}					//end edit box

        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