AutoCAD 2010 :: Passes All Entities To A Single Layer
Feb 8, 2013
I want to know if there is a command that passes all entities (lines, text, etc.) to a single layer, but that the institution holds the color and line style assigned according to the original layer that contained it.
View 2 Replies
ADVERTISEMENT
Aug 16, 2013
I have a lisp that draws variety of entities such as lines, arcs, hatches, points, blocks, text etc. How can I make one single block containing all of them, i.e. one block that has all items drawn since the lisp was invoked.
View 8 Replies
View Related
May 22, 2012
How could I get the ObjectIdCollection of all entities (points, polyline) in a certain layer?
I am using the following code at this moment.
private ObjectIdCollection GetEntitiesOnLayer(string layerName)
{
Editor ed = doc.Editor;
TypedValue[] tvs = new TypedValue[1] { new TypedValue((int)DxfCode.LayerName, layerName) };
SelectionFilter sf = new SelectionFilter(tvs);
PromptSelectionResult psr = ed.SelectAll(sf);
[code]....
But it seems the function fetches more ObjectId than I expected.For example, if I draw 3 points and 2 polylines in "A" layer.
ObjectIdCollection obc = GetEntitiesOnLayer("A");
int i = obc.Count;
I was expecting i to be 5 (3 points and 2 polylines), but i seems to be more than 5.
View 2 Replies
View Related
Oct 8, 2012
How to select all entites of a layer?
I want to migrate my VB code to VB.NET code, migrate the below code?
Private Function GetEntities(oLayerCollection As Collection, sSelectionSetName As String, _ Optional pointsList As Variant = Empty, _ Optional mode As AcSelect = acSelectionSetCrossingPolygon) As AcadSelectionSet Dim oSS As AcadSelectionSet
[Code].....
View 2 Replies
View Related
Oct 28, 2011
I have a drawing with two drawingentities.
a circle drawed in the layer named "layer01" and
a line drawed in the layer named "layer02"
Now I want a vba code that select (highlight) all drawn entities in layer01 and layer02.
View 7 Replies
View Related
Sep 3, 2013
I recently received an autocad drawing with a number proxy entities in it. They exploded ok. However by exploding them am I losing any properties that may be useful. And what really are proxy entities?
View 7 Replies
View Related
Oct 31, 2011
Any method to export text to excel such that the text is editable within excel?
I have a column of text (each text line is an individual mtext entity) and I would like them to appear in a column format in excel where each mtext entity has it's own cell.
View 6 Replies
View Related
Sep 26, 2012
I was wondering if there is a way to change multiple entities of Mtext. I tried CHT but the options are limited. Is there a way of say changing the color?
View 6 Replies
View Related
Feb 21, 2012
I want to import my excel table to autocad. but when i try to do this, the table is not correctly import. Im using paste special command and past to link. if i paste my file excel, image and other formats, i can not plot my draw. i attach my excel file.
Note: i found a software that name is auto table. but its 150$. we don't want to buy an other software.
View 6 Replies
View Related
Dec 19, 2012
Is there an easy way to remove all the wipeouts in a drawing without deleting the entities they are attached to?
I have hundreds in some drawings, so I am trying to do a mass editing through lisp, but it won't remove just the wipeout, the text grouped with it gets deleted too.
View 8 Replies
View Related
Jul 27, 2012
I am running AutoCAD 2012 Electrical. The source wiring diagrams I am working with have attributed blocks all over the drawing. For my purposes, I dont need to export the data, but I do need to change the drawing. When I use "Burst" or "Explode Attributes to Text" in the Express Tools menu, it does change the attributes to text. However, it throws all the data that is in in the attribute all over the face of the drawing. This is extremely time consuming to delete them as some are micro small text.
I need a command that will explode the attributes to text, turning the blocks into entities, as if there are no blocks at all.
View 2 Replies
View Related
Mar 22, 2012
Consider the following situation.
Ortho - ON
Polar - OFF
A line is drawn parellel to the X-axis. What I have been doing all of my career to lengthen this line, by say 3 inches, is select the line, pick the grip I want to lengthen, drag that grip in the general X direction, type the value 3 at the command promt, and hit enter. Voila, done.
Now what AutoCAD is doing, is bringing the grip (yup, ortho is stll on) to exactly where my curser is, totally disregarding the ortho setting AND the value in typing at the comand prompt.
View 8 Replies
View Related
Mar 17, 2012
I have a spline that goes through 4 points:-
x1,y1 - x2,y2 - x3,y3 - x4,y4
The spline is of degree 3 and is fixed at points x1, y1 and x4, y4.
What i need is the equation of the spline.
Is there anyway of calculating the equation that represents the spline?
View 1 Replies
View Related
Jan 16, 2013
A student of mine asked why you would create multiple layer masks on a single layer.
View 6 Replies
View Related
Jun 7, 2013
Why can't I align a single layer that is inside a layer group? The align tool would always select the top most layer group as the 'boundary' for alignment, thus automatically selecting the whole layers inside of it and align them as a group.
Is this a bug or just GIMP's weakness? It definitely reduces the layer group's usefulness.
View 5 Replies
View Related
Mar 19, 2012
We have this need to have all of the solids in a drawing to be placed in the "solid" layer.
Sometimes folks are drafting lines to develop these solids, and keeping the lines on the "solid" layer, rather than moving them to another layer, or deleting them altogether.
I could get folks to run this command before leaving the drawing.
I'm thinking something along the lines of:
Select all entities that are on the solids layer that are not solids.
If nil, great, do nothing.
If entities are selected, let me do something with them.
I'm hoping the following can be modified ever so slightly.
(setq non_solid (ssget "X" (list (cons 0 "3DSOLID")(cons 8 "solid"))))
View 4 Replies
View Related
Jun 30, 2013
SurfaceBody.GetExistingFacets( ToleranceIndex As Double, VertexCount As Long, FacetCount As Long, VertexCoordinates() As Double, NormalVectors() As Double, VertexIndices() As Long )
This works fine in VBA (Inventor 2014). But when I start using the same in VB.NET (VS 2012) all declaration as long shows as integer and fails on compiling. If I change to integer compile passes but fail on executing in Inventor 2014.
View 6 Replies
View Related
Jul 6, 2011
I'm working on a drawing and I need to take multiple layers that I have drawn (which make up one unit) and basically merge them together so that I can replicate and move them about and place them where they need to go in the larger unit that they live in.
I tried playing with grouping in the Layers Manager, but that doesn't seem to be doing anything for me. Not sure if I'm just doing something wrong, or if there is another way to go about this.
I'm attaching my CAD drawing so you can see what I'm up to. In this drawing, there are basically two groups of layers. Those that make up the Control Tower itself, and another group for what's called a Tajimi Rack. I need to have all the layers for the Tajimi Rack made as one so that I can move that object around without having to move the layers one at a time. (There is a lot more that needs to drawn into the Tajimi Rack, but once I know how to merge them all together, I'll be in a good position to carry forward.)
I also need to know how to then take that new Tajimi Rack layer and duplicate it (I'm looking to place about a dozen of the Tajimi Racks in the control tower.
FWIW, I'm a self taught CADer. By that I mean I have to use CAD in my job but it's always done in a 2D setting where I'm simply looking through roofs with other drawings laid under for rigging purposes. This drawing things in 3D concept is something I'm just making up as I go along. 5PTS Control Tower.dwg
View 5 Replies
View Related
May 29, 2012
I have several DXF files that I would like to bring together into a single AutoCAD file so I can put all the pieces I have together on a single screen. How do I do this?
Also, when I am able to do this, is there a way to give points to my separate objects so I can match them up with other points of other pieces that it's supposed to fit up to? I'm pretty new to AutoCAD
View 4 Replies
View Related
Jul 12, 2013
we are working on circuit drawings which are lengthy and we usually split the model into more than 100 layouts and publish pdfs.So we get 100 pdf pages. When we view the pdf, we need to scroll down to get into next page.
Can we create a pdf for complete circuit in single page, where we can scroll the page horizontally. This will work in viewing the page horizontally with continuity in the circuit.
View 4 Replies
View Related
Mar 14, 2012
Underlining the “single text” and “multiline text”
To underline the “single text”, we use the %%U but this sounds not to work with the “multiline text”!
What I should use to underline the “multiline text”?
Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.
View 2 Replies
View Related
Feb 22, 2012
In my title block I have a attribute with the name project_Number. Now what I want to do is the following. When I edit my block with the project number. The project number should automatically be added to a text box without me typing in the project number twice.
E.g.. This Drawing is part of the consulting services provided for Project[Project_Number] and may not be used or applied for any other purpose without prior consultation.
in other word the project number should be reference in the text box from the attribute.
View 6 Replies
View Related
Sep 17, 2010
I'm using the publish command to create a set of single-sheet Dwf files. After running publish the dot in my file names have been converted to the undercarage symbol.
example: (1111 - E1.0 sheet name - job number.dwf) this is converted to (1111 - E1_0 sheet name - job number.dwf)
If I do a manual dwf plot, file name does not change.
View 1 Replies
View Related
Sep 11, 2013
Working in AutoCAD™ 2012... Is there a way to "erase" an entity, line, etc. by selecting it and having it immediately disappear? I work in 3D/DXB files a lot and it really useful when working with an audience either for on-screen seminars or over-the-shoulder.
View 9 Replies
View Related
May 23, 2013
I can't mask more than 1 area of an xref.
If I mask one area in model space, then I try to mask another, clicking no delete of previous boundary, it still won't let me do it. I need to mask many small pieces of an xref in the model space.
View 6 Replies
View Related
Mar 1, 2012
I installed AutoCad 2011 on a new computer Win7 Prof Off OS. I'm trying to make single pdfs for each dwg that I have. No matter what I select it keeps making one multi page file of all my dwg sheets.
I've tried going under Publish Options > General DWF/PDF and I've tried both Multi-sheet file and Single-sheet file getting the same results. I have the same problem whether I use Dwg to Pdf.pc3 or my Adobe.pc3 driver.
View 1 Replies
View Related
Apr 23, 2012
I have multiple paper spaces to show a variety of drawings. I currently have my floor plan as a viewport, but I need to delete it in order to add in my elevations. I tried deleting my current viewport, but it also deletes the rest of mine. How do I delete a viewport from only one paper space, so that it does not interrupt with my other drawings?
View 1 Replies
View Related
Apr 20, 2013
i'd like to turn single texts into a multiline tex and KEEPING THEIR INDIVIDUAL COLOURS & TEXT SIZES.
View 4 Replies
View Related
Jun 1, 2012
I have a simple block with a single attribute that I am trying to sync. Someone previously created this block, defined it on a named layer with the attribute defined on the same layer with a user font, then inserted it on three different layers. Now, even though I have redefined the block on layer 0, set everything to BYBLOCK, all the attributes are still on those other layers. And when I try to use ATTSYNC, all the values disappear. I don't get it. Isn't ATTSYNC supposed to retain all the values?
How can I get all of these blocks with their attributes and values intact on the same layer?
View 4 Replies
View Related
Feb 27, 2012
When we launch the Area comand the area value is hold in the system variable "area".
What is the system variable that holds the Length value of the selected entity?
View 6 Replies
View Related
Feb 7, 2012
I just switched over from 2005 to 2012. In 2005 I used Express Tools to change several lines of text to one mtext object. I can't find it in 2012. I didn't realize how much I used it until I lost it.
how to select several lines of text and convert it to one mtext object?
View 3 Replies
View Related