AutoCAD Map 3D :: FDO - Color From Property (HEX)

Nov 2, 2011

What format does the Color Property need to be in? But the Color wants numeric but accepts a manually entered 0xFFFFFFFF

Also, HEX is not an option in a SDF etc. right now it is stored as String "FFFFFFFF"  in my properties - I can try to use ToInt32() or ToFloat() without luck

How and what format do we need in the Property? I have tried converting to Decimal and Int - but it only accepts manually typed color - see below.

View 1 Replies


ADVERTISEMENT

AutoCAD Architecture :: Two Graphic Property Definitions Set By Formula Property?

Feb 12, 2013

Is there a way to control which of two 'Graphic Property definitions' are used via a formula property with a IF, Then, condition statement?

View 3 Replies View Related

AutoCAD Architecture :: Set Manual Property Value Within Another Property's Formula?

Aug 25, 2011

I have two related properties... One is a formula property, the other is a manual property.

In the formular property I'd like to set the value of the manual property.

View 1 Replies View Related

CorelDRAW Graphics Suite X6 :: Bar In Spot Color Property Box

Nov 14, 2013

What the "Bar" in spot color property box means?

View 3 Replies View Related

AutoCAD .NET :: How To Get Custom Property Names / Values From Custom Property Bag

Sep 15, 2011

I have been trying to find a method to extract custom properties from the custom property bag.

I have been able to extract the property value, using the "GetProperty" and the associated "GetValue" method, this method works when I know exactly what property name I am looking for. What do you do when you don't know the property name?

here is my code snippet..

dim myProps as acsmcustompropertybag = mysheet.getcustompropertybag
dim myProp as iacsmcustompropertyvalue = myprops.getproperty("SOMENAME")
dim myPV as string = myProp.GetValue

what I want to do is:

dim myProps as acsmcustompropertybag = mysheet.getcustompropertybag
dim myPN as string = ??????????.tostring
dim myProp as iacsmcustompropertyvalue = myprops.getproperty(myPN)
dim myPV as string = myProp.GetValue

View 6 Replies View Related

AutoCAD 2010 :: Property Dialog Box

Apr 18, 2013

Just installed AutoCad 2012 and I have the Property Dailog Box open. I anchor it to the left side of the drawing screen and "Lock" all toolbars in place. When I get out and go back into Autocad, the dailog box is still locked, but it is in the middle of the drawing screen.

View 3 Replies View Related

AutoCAD VB :: How To Change Line Property

Feb 4, 2013

How to change the value of StartPoint or EndPoint of a Line ? (I just don't want create a new line)

View 1 Replies View Related

AutoCAD Civil 3D :: Property List And Name Changes?

Sep 17, 2013

When I pick a feature line, the property dialog would show Feature line, and list the information.

Now for some reason, I get aecc_feature_line and the property dialog shows a different list of information.

How do I get back to the Feature line list.

View 9 Replies View Related

AutoCAD VB :: Get And Set Dynamic Block Property

Apr 4, 2011

I have a block which contains visible and invisible objects and attributes. I need to export custom block properties, which I added to a dynamic block, like in express tool export attribute information.

or it is possible to convert my custom property, which can contains invisible and visible objects, to attribute value.

View 6 Replies View Related

AutoCAD 2013 :: How To Add Property For 3D Object

Apr 25, 2013

How to a add a new property for a 3d object created in Autocad ?

View 6 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 .NET :: Unable To Get Custom Property Value

Sep 18, 2013

I am using AutoCAD 2014 and VB.NET 2010.  I am trying to get the value of a custom property and cannot seem to do so.

The old command I used for AutoCAD 2010 was:

ThisDrawing.SummaryInfo.GetCustomByKey(strParameter, strValue)

But this does not work anymore. So I created this sub but it does not seem to work either. 

Public

Sub subFindCustomParam(ByVal strUserParameter AsString)    
Dim infoDB AsDatabase =Application.DocumentManager.MdiActiveDocument.Database
Dim infoBuilder AsDatabaseSummaryInfoBuilder = NewDatabaseSummaryInfoBuilder(infoDB.SummaryInfo)       
[code]........  

View 1 Replies View Related

AutoCad :: Labeling A Point With A Property Value

May 6, 2011

I have imported a DXF file from map info into autocad, these seed points contain x,y values but also if you list properties they also contain other information in this came names. I need these names to appear beside the point in autocad for printing purposes . There are 1619 points and hand tying would be a huge task.

View 3 Replies View Related

AutoCad :: 3D Contour Map - Isolating A Property

Jul 27, 2011

I have a plain 3d contour map with all the lines on the same layer.

I want to make it readable in 2d by changing the linetype of each so it's easier to read.

The map is pretty large, I was hoping there was some way I could isolate all lines with the same Z Vertex so I could do an entire elevation at once?

View 2 Replies View Related

AutoCad 2D :: Label The Boundary Of A Property

Sep 25, 2008

I'm trying to label the boundary of a property. It has straight lines on sides and curves on top and bottom. i managed to change the style of the text the way I want it (radius and length above, delta below). The problem i have is that I don't know how to change the height of the text. The option under "Text properties" in "Edit Label styles" is shaded ( I cannot change it).

View 7 Replies View Related

AutoCAD .NET :: How To Read Lisp Property Value

Sep 4, 2012

I have old Lisp macros, that writes property to drawing by command (vlax-ldata-put "SpData" cVar cVal). How can I read this property's value, using VB.NET ?

I attached file with this property, its value="TEST"

View 6 Replies View Related

AutoCAD :: Filtering Property Set Definitions In Tables?

Aug 14, 2012

On my Property Set Definitions I have a attribute table called "ROOM_NO". This is where I enter the full number/character of the room, in my case the value usually looks like "101A", and sometimes "A101B" for Room number.

I was asked to do another table to separate the fields.

ROOM_PREFIX  ROOM_NUM.     ROOM_SUFFIX.

Separating the room number in 3 attribute tables to "A 101 B"

I was thinking referencing the ROOM_NO table in each box and filtering out the numbers and character. For example in ROOM_PREFIX I would reference ROOM_NO and filter out the number and the suffix letter through a formula. And in ROOM_NUM I would Filter both alphabetical character.

how to write such formula?

View 4 Replies View Related

AutoCAD 2010 :: Object Selection Property Box

Mar 6, 2012

every time I select something a small box pops up in my way with the object's properties. I can't figure out how it became turned on, and don't know how to get rid of it.

View 4 Replies View Related

AutoCAD Inventor :: ILogic - How To Sum A Property Of All Sub Assembly

Oct 26, 2012

I got here on in my templates, two types of weight - net and gross. I've changed the main property MASS of each PART to be the GROSS weight, so when i have one assembly i always get the total gross weight.

And when i wanna get the NET, I open the BOM, show the proper column with this net weight and then export do XLS to sum all of then..

Now the doubt is, to get the things easier, is there a way to put some code in the assemblies, that could sum all the properties "X" from each part and sub assembly to get the total net weight ?

View 7 Replies View Related

AutoCAD Architecture :: Property Set Definition Integer Value?

Aug 22, 2012

I am trying to reference my room number to another table in my project. This is to satisfy a project requirements and output to a GIS attribute table.

Originally my room number is "001" and when I reference this field to another table I get "1" and drops the first  two digits.

View 2 Replies View Related

AutoCAD 2013 :: Associative Property Of Dimension

Mar 31, 2013

Associative property of the dimension,I’m wondering if there is a way to “reassociate” the dimension without moving it.

For example, in the attached screenshots, the dimension is moved downward and then it aimed to re associate it with the object it measures. After the association the dimension is moved toward the object. What I wanted is to re associate the dimension to the object BUT to keep it at its current location.

View 2 Replies View Related

AutoCAD .NET :: How To Change MText Height Property

Nov 17, 2011

how to change the MText Height property in vb.net, i used the below code, Dim mytext As New MText mytext.Contents = txt mytext.height = 130 mytext.Location = Pt mytext.Attachment = AttachmentPoint.MiddleCenter But it is showing an error that Height is an invalid method.

View 2 Replies View Related

AutoCAD Inventor :: ILogic - How To Sum A Property Of All Sub Assemblies

Oct 25, 2012

I got here on in my templates, two types of weight - net and gross. I've changed the main property MASS of each PART to be the GROSS weight, so when i have one assembly i always get the total gross weight.

And when i wanna get the NET, I open the BOM, show the proper column with this net weight and then export do XLS to sum all of then..

Now the doubt is, to get the things easier, is there a way to put some code in the assemblies, that could sum all the properties "X" from each part and sub assemblie to get the total net weight ?

View 1 Replies View Related

AutoCAD Architecture :: Roof Elevation Property

Feb 8, 2008

what the roof elevation property relates to and why? Actually, I know that it is the initial insertion point of the roof baseline, but why doesn't it update with grip edited changes in the elevation of the baseline? See the attached file. The three x-lines converge on 0,0,0. The roof elevation is stated as 0. Obviously that property is meaningless. Considering the importance of roof elevations and making them meaningful, you'd think there would be some rhyme or reason to that property.

View 4 Replies View Related

AutoCAD LT :: Cardinal And Layer Property Toolbars

Jan 8, 2013

We have the Cardinal Toolbar and the Layer Properties Toolbar (one that allows you to toggle between layer groups ... for example floor levels) installed on our AutoCAD LT 2006 software for a PC.  We are looking to purchase AutoCAD LT 2013 for a MAC.  We have downloaded the trial version, and cannot find these toolbars on the new version.  Our files are set-up to function with these toolbars.  Is there any way to download these toolbars for the new version?  If not, are there commands we can use to change the cardinal direction in model space and to toggle between floor level layers (groups?)?

View 1 Replies View Related

AutoCAD Civil 3D :: Label Points According To Property?

May 14, 2012

I have a bunch of GIS points that have been inserted into a drawing.  All the points have data associated with them, gpm values, that I would like to make more clear. Is there a way to filter and color code them with out doing it by hand?

View 3 Replies View Related

AutoCAD .NET :: How To Set Property Definition Display Order

Nov 13, 2013

I am programmatically creating several property defintions inside of a property set definition.  I would like to be able to set the display order of the property definitions but the property is read only.  How to be able to accomplish this using the API?

View 1 Replies View Related

AutoCAD LT :: Colors From Layer Property Manager

Mar 12, 2012

Re: AutoCAD LT version F.51.0.0

If a color is selected from either the properties or quick properties dialog boxes, one of the choices the color icon with both black and white and a diagonal separator (which produces white on the screen and black on the plotter) which I will consider the default.

On the Layer Property Managers dialog box, however, while the full color pallet is available, I cannot find a way of setting the layer color to the default. Once a layer color has been changed from the default, how does one put it back to the default color?

View 1 Replies View Related

AutoCAD Inventor :: Saving One Drawing Property As Another

Mar 12, 2013

If I have my username set in Inventor (Application options>General tab) as F Last (First initial, last name), is there a way, for drawing purposes, that I can take that property, extract my initials (FL, with no space), and save that as a new property in the drawing? I'd like to have a "By" column in my revision table that will be my initials that are extracted from that username property.

View 2 Replies View Related

AutoCad :: Preparing A Layer Property Filter?

Feb 22, 2013

I'm attempting to create a layer property filter so that all used layers except xref ones show up. I can use the Invert filter option, but that doesn't stay checked between sessions for some reason. How can I set up this property filter?

View 2 Replies View Related

AutoCad 2D :: Creating New Layers From Layer Property

Sep 7, 2011

I'm an ACAD LT 2008 user demo'ing ACAD LT 2012.

In ACAD LT 2008 you can create a new layer (or layers) from a layer property filter and can edit all of the new property characteristics and the filters will not sort until you are done (apply). This is useful for creating multiple layers (especially matching your current filter) that you can copy and paste layer names. However, in ACAD LT 2012, as soon as you select "New Layer", a new layer named "Layer 1" automatically sorts/filters and it is gone from view, requiring you to find it before you can rename it and edit its properties. Is there a way around this?

View 1 Replies View Related







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