AutoCAD Civil 3D :: Determine FeatureLineStyle Layer Name?

Feb 17, 2013

Is there a way to determine FeatureLineStyle layer name using .NET?

View 2 Replies


ADVERTISEMENT

AutoCAD .NET :: How To Determine Whether Layer Of Drawing Is Empty

Nov 6, 2013

I want to check for the emptiness of  a drawing file. whether the model space or layout is empty. is there any way to find it out.

View 1 Replies View Related

AutoCad :: Determine Layer Of Object By Pointing At It?

Apr 10, 2013

I have a somewhat complex document with many layers that have similar colors. Is there some way to identify the layer of a particular element using my mouse cursor in AutoCAD WS?

View 9 Replies View Related

AutoCAD Civil 3D :: Determine Elevations Along Slope

Dec 3, 2013

I need to project a surface/grading (or something of that nature) across my berm and have it intersect with the inside bank. This is better explained if you see the attached image. In the plan view you see 4 featurelines. Outside TOE, outside TOB, inside TOB then inside TOE. I need to project the outside TOE across the berm (shown in the section view) then create a new featureline where the line and inside slope of the berm intersect. Note that all the elevation shots vary as does the widths across the berm. What's the best way to do this?

View 9 Replies View Related

AutoCAD Civil 3D :: Determine X Y Location Of Surface Label?

Oct 11, 2012

I need to extract the XY location of a surface label. Specifically, I am trying to determine the coordinates of the first picked point in a two-point slope label. But in looking at the IAeccSurfaceSlopeLabel interface in the ActiveX documentation, I'm not seeing where this data is stored. Even for a simple surface spot elevation label (IAeccSurfaceElevationLabel) I don't see a property that stores the coordinates.

View 6 Replies View Related

AutoCAD Civil 3D :: Way To Determine Number Of Styles In Drawing

Nov 6, 2011

Is there a way to determine the number of styles in a drawing?

View 9 Replies View Related

Illustrator SDK :: Loop Through Layers And Determine If Its Text Layer

Aug 20, 2012

I am trying to loop/iterate through all layers, determine if it's a "text-layer", if it is, set it's opacity to 0.This is what I have so far:
 
                var iapp = new Illustrator.Application();
                var openoptions = new Illustrator.OpenOptions();
                var idoc = iapp.Open("c:\myFile.pdf", Illustrator.AiDocumentColorSpace.aiDocumentRGBColor, openoptions);
                Illustrator.Layer mainlayer = idoc.Layers["Layer 1"];
 [code]....

View 1 Replies View Related

AutoCAD Civil 3D :: Use Layer Group Filters For Layer Translation (LAYTRANS)?

Oct 2, 2013

A drawing with hundreds of layers should be simplified for our customer by decreasing the numbers of and renaming the layers (there is yet no target file existing). In order to solve this, I generated group filters and assigned every single layer to them (all printing properties are assigned to objects). The layer groups show the desired layer structure after the transformation (still a three-digit number).

Unfortunately, the LAYTRANS dialog doesn't let me choose layers by group filters or remarks. It seems as all the work was for the birds.

Is there any way to translate my layers using filters or remarks?

I use AutoCAD Civil 3D 2010.

View 4 Replies View Related

AutoCAD Civil 3D :: MEP 2013 Layer Dialog - Layer Pane Not Updating To Selected Filters

Jan 18, 2013

I'm having issues with Civ3d 2013. I pushed off upgrading from 2012 because of the format change and the service pack release. I was hoping little glitches would be fixed.

Here are the  a couple of glitches to date that I have seen no resolution to in the long list of threads.

1. Layer filters do not filter, unless I have checked "Apply filter to toolbar". The problem is, I dont want to apply them to the toolbar.

2. Publishing to PDF - when set to lines merge (set in the page layout and the publish setting), the wipeouts dont work, and the background masks on leaders makes a faint border around the text in the PDF. When set to overwrite, to get the wipeouts to not print to the PDF as a big black blob, they have to be on a layer set to color 255. I can work around most of the wipeouts, except for dimensions because the background mask doesn't seem to take.

View 2 Replies View Related

AutoCAD Civil 3D :: Can Have 1 Layer Of Points And 1 Layer Of Lines

Aug 30, 2013

I used PENZD file that has 8 points (4 locations with 2 depths in each location) to create a Point dwg that has several annotations I made.  Then I used the

"Lines/Curves" => "Create Lines" by "Point # Range" to create 6 sets of lines:
Line Set #1 that connects Points 1-3-5-7-1,
Line Set #2 that connects Points 2-4-6-8-2,
Line Set #3 that connects Points 1-2,
Line Set #4 that connects Points 3-4,
Line Set #5 that connects Points 5-6,
Line Set #6 that connects Points 7-8. 

The annotaions for the 8 points are gone, after I completed the creation of the Lines.  I wonder whether I can create 2 layers in the AutoCAD Civil 3D 2013: 1 layer for the 8 points with my annotations attached and 1 layer for the lines I created from the 8 points. 

View 2 Replies View Related

AutoCAD Civil 3D :: Create A Layer Filter That Excludes Both Civil Layers And Xrefs

May 3, 2012

I want to create a Layer Filter that excludes both Civil Layers and Xrefs.

I have created one that excludes Civil objects (Excel Civil.jpg)  but when I add a filter for excluding xrefs as well the Civil objects appear in the filter again indeed all the layers are included again (Excel Xref.jpg) if I invert the filter nothing is displayed. 

View 4 Replies View Related

AutoCAD .NET :: Determine 32 Or 64-bit Application?

Jan 7, 2013

I am using a dllimport from accore.dll, but the entry point for the method in the dll differs between 32-bit and 64-bit version of AutoCAD. How can I check whether the AutoCAD application is a 32- or 64-bit version, i.e. the dll is 32- or 64-bit?

View 7 Replies View Related

AutoCAD Map 3D :: Determine Unknown Tangent

Feb 14, 2011

Sometime in the past, I've drawn an arc, probably using an old deedplotting program, and imported it into Map3D.

I now have a new parcel that I'm plotting, and need to obtain the tangent of an arc on the parcel's perimeter.

Typically I draw a line, as close to the tangent as I'm able, and then toy with the bearings until I get it as close as I can.

This is a counter-productive means of finding the tangent bearing of an arc, and I'd really like to find a better way of doing this.

Is there a succint manner that I can pull a tangent line off an existing arc?

Using osnap this afternoon I thought I could do it, with the extension, but in testing it later, I found it was off by a good 2 or 3 degrees. While indeed a minor variance, I'd like to find a better way.

View 1 Replies View Related

AutoCAD .NET :: Determine Units Of A Property?

Oct 24, 2012

I am selecting items and grabbing their DBObjects, and then reflecting on those objects to inspect properties of the object.  For example, I might have a DBObject that is actually of type Pipe, Duct, DuctFitting, Line, etc, so I am using TypeDescriptor reflection to handle various cases in as abstract a way as possible.

My first question is this: Is this the smartest way to grab all of the attributes of a give object?  Is there another call I can make the retrieve all of the attributes for a Pipe and a Line (to very different types of objects).

Second, when I see a property named Length and it is a double I know it has to be a length and that I can use the units from the drawing.  Is there a way to programatically discover this other than the name of the property and its type (double)?  In other words is there some metadata I could retrieve about any given property against which I am reflecting, or is there a smarter way to get these attributes which might provided said metadata?

View 2 Replies View Related

AutoCad :: Determine Length Of Multiline

Jul 4, 2013

How to determine the length of a multiline. With a polyline if you click on it, it's length is displayed in the properties palette, but that doesn't work for a multiline as no length property shows up in the properties palette.

View 9 Replies View Related

AutoCad :: How To Determine Scale Of Drawing

Mar 30, 2011

I have a .dwg drawing, and the same one but in .pdf file format. On the .pdf one, there stands the scale (1:500), but on .dwg one there is no scale. I was wondering, how could I determine the scale of the .dwg one?

View 9 Replies View Related

AutoCAD Inventor :: Determine Which Nodes Are Expanded Using API?

Feb 22, 2012

Is it possible to determine which nodes are expanded using the API?

I want to make some changes to the node information in an assembly browser but as there are many hundred parts so I only want to do the operation on the expanded nodes to keep any delay to a minimum.

View 2 Replies View Related

AutoCAD .NET :: How To Determine The Order Of Objects Selected

Jan 24, 2013

How to determine the order of objects selected (i.e text, block reference...). According to type or X, Y ..?

View 8 Replies View Related

AutoCAD Inventor :: Determine Size Of Louver?

Feb 11, 2013

is there any tool in inventor that can determine size of louver or quantity of louver base on heat generated?

we are designing a sheet metal box. we need to find out how many louvers we need.

Autodesk Inventor Professional 2014
Autodesk Product Design Suite Standard 2013
Microsoft Office 2007 & 2013
Windows 7 64bit
Synergis Adept 2013
Visual Studio Express 2010

View 6 Replies View Related

AutoCAD Inventor :: Using Interference To Determine Cut Shape?

Mar 1, 2013

Is there a way to use interference checks to determine what material needs to be subtracted away from other parts to get the clearance needed? (See Attached) The way I typically handle this is to project the lines from one part onto the sketch of another and proceed accordingly, however as you can see, it didn't work out well in this instance as the face of the part in question is not parallel with the sketch plane in the other..Therefore making the cut location inaccurate.

View 2 Replies View Related

AutoCAD 2010 :: How To Determine If Any Viewports Are Active

Oct 26, 2012

How can I tell when a viewport (any viewport) in paper space is currently active.

This is actually related to a .NET programming error, whereby even when the drawing is in Paper space, if a viewport is active, I am unable to programmatically access the Layout.  I need to be able to, at a minimum, detect this condition, then switch back to full paper space (i.e. de-activate the viewport) if possible.

View 4 Replies View Related

AutoCad 2D :: How To Determine Mass Properties Of Bolt

Mar 2, 2012

how to determine the mass properties of bolt.

View 4 Replies View Related

AutoCad :: How To Determine Position Of Three 5 / 5 Mm Diameter Holes

Aug 12, 2012

How do I determine position of the three 5,5 mm diameter holes? I am missing dimensions for horizontal position, am not I right?

View 1 Replies View Related

AutoCad 2D :: Determine Display Size Of Dimensions?

Jul 25, 2012

How to display the annotations properly. Perhaps this may just be a display or view setting but I beleive I have checked them all at least 3 times =).

Even in the video he explains all the things explained here but does not explain exactly how to make the dims and ext lines notate and display properly, in model or paper view (view port). I have tried many ways to create a view port in paper space and annotation several dimensions. I constantly get different text sizes and ext line scaled differently within the same view port.....even after I have locked it.

I am also confused about notating dims in the model space within the paper space view port vs on the paper space outside of the model space view port? Perhaps this has something to do with my issues?

Again it may be because I don't understand another function/setting impacting this well enough yet?? I have tried/used every variable in the Dimension Style Manager on the Lines, Text and Fit tabs to no avail.

View 6 Replies View Related

AutoCad :: Determine Line Width By Using Polylines

Mar 27, 2012

I have used color to determine line widths. The plotter set-up recognizes color and assigns the appropriate line width. My new company is determining line width by using polylines. Am I behind the times? Or, is this a better way. Willing to change.

View 4 Replies View Related

AutoCAD .NET :: Determine If Mechanical Interfaces Are Loaded

Dec 13, 2012

As a part of an other recent topic (Interop 32/64 COM - Acad Mechanical),In VB.NET, how can I easily be sure to be in a Mechanical AutoCAD with every specific interfaces loaded (SymBBAuto, AcadmAuto...)?

I tried to get specific system variable like "AMVER" but this does not work.

I tried a "Try... Catch" while using "GetInterfaceObject", but this does not work at any time... sometimes I got fatal errors.I don't want to use the caption of the AutoCAD window, it is not enough reliable for me.

View 7 Replies View Related

AutoCAD Inventor :: Determine Whether Positional Representation Is Failing?

Aug 9, 2012

I'm looping trough positional representations in a assembly and I would like to determine if one of them is failing.

View 4 Replies View Related

AutoCAD .NET :: Determine Whether Or Not A Point Inside Polyface Mesh

Sep 17, 2013

My problem is I have an object polyface mesh and any point, determine which points in the mesh object polyface not?

View 5 Replies View Related

AutoCAD 2010 :: Viewport Rotation / Cannot Determine What Angle Was Used

Jul 30, 2012

Using the mvsetup, a colleague of mine rotated the model space in the viewport.  I cannot determine what angle was used, is there an setting in the properties manager to show the rotation angle or other way to find out?

View 5 Replies View Related

AutoCAD Inventor :: Determine If Flat Pattern Has Error?

Sep 12, 2013

I create custom sheetmetal styles from time to time via the API. It fails when the flat pattern has issues. Is there a way to determine if the flat pattern has errors/issues so I can delete it as required?

View 3 Replies View Related

AutoCAD 2013 :: Determine Version Of A File Without Opening It

Dec 3, 2012

I am looking for a way to verify what version an AutoCAD file is without opening the file.  I have a customer that requests the files to be in an older version of AutoCAD and for QA purposes I would like to verify that the files we are sending out are in the correct version.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved