Print Page | Close Window

AUTOCAD XREF/BLOCK NESTED OBJECT LIST

Printed From: CAD Forum
Category: EN
Forum Name: AutoCAD
Forum Description: Discussion about AutoCAD and AutoCAD LT, viewers, DWG and DWF formats, Design Review, AutoCAD 360, add-ons
URL: https://www.cadforum.cz/forum_en/forum_posts.asp?TID=6092
Printed Date: 19.Apr.2026 at 08:04


Topic: AUTOCAD XREF/BLOCK NESTED OBJECT LIST
Posted By: germanbarry
Subject: AUTOCAD XREF/BLOCK NESTED OBJECT LIST
Date Posted: 17.Jun.2011 at 10:30
I'm in a drawing that has an xref. I want to know the layer that one of the lines within an xref is called, so i NX (nested xref)command the sucker.
Problem is though, the box that pops up which has the properties of the line in it (Object, Layer, Color, Linetype) won't show the full layer name if the layer name is longer than what the box allows for.
 
Is it possible to somehow stretch the box so that i can see the full layer name, or an alternative that lets me see the full name and not just the first 31 characters?
 
the details in the Layer field of this popup box is: "(xref name)|(layer name)" so it can often easily get past the 31 character limit that the textbox allows.
 
any ideas?



Replies:
Posted By: bryang
Date Posted: 07.Nov.2011 at 00:14
locate the file called XLIST.DCL right click and open with notepad, scroll down to where you see the item that i have made bold & underlined :
 
column {
      : text {
        key = "sObjectType";
        //width = 35;
        //fixed_width = true;
      }
      : text {
        key = "sBlockname";
      }
      : text {
        key = "sLayer";
        width = 31;              Change this value to say 100
      }
      : text {
        key = "sColor";
      }
      : text {
        key = "sLineType";
 
save and close, use the xlist command and you should see the difference.  Note if you are using 2012 then this will need to be updated in a few locations within the xlist.dcl file.Tongue



Print Page | Close Window