;; | ---------------------------------------------------------------------------- ;; | LA_SetLWeight ;; | ---------------------------------------------------------------------------- ;; | Function : Sets the LineWeight of objects in a layer, when not specified ;; | Argument : ;; | 'la' - LayerName ;; | 'LWT' - LineWeight to set (integer) ;; | Returns : Sets the specified lineweight to the layer ;; | Updated : July 28, 2003 ;; | e-mail : rakesh.rao@4d-technologies.com ;; | Web : www.4d-technologies.com ;; | ---------------------------------------------------------------------------- (defun LA_SetLWeight( la LWT ) (if (tblsearch "LAYER" la) (command "._Layer" "_LWeight" LWT la "") ) )