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


ADVERTISEMENT

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 Inventor :: ILogic - Set Custom Property In Custom Content Center Part

May 16, 2013

When using Inventor with Vault, we have a problem when categorizing custom content center parts in Vault. In short, custom content center parts are incorrectly categorized as "Content Center" and automatically released - as there is no property that we can use to identify these files.

I need iLogic code to trigger when custom content center files are created/saved, wich adds the following custom iproperty "IsCustomContentCenter=True".

View 1 Replies View Related

AutoCAD Inventor :: Sketched Symbol With Custom Property

Nov 30, 2011

I am trying to create a sketched symbol on the fly that has custom properties in it. I am also creating the custom properties on the fly. I need to get the actual expression for the property into the sketched symbol not just a value. I need this so that I can export the drawing as an autocad .dwg that has attributes in it.

View 3 Replies View Related

AutoCAD .NET :: How To Code Drop-down List For Custom Property Using OPM

May 27, 2013

I am mainly developing for AutoCAD 2013/2014 how to implement a custom property as a drop-down list using OPM and .NET/C# wrapper. I have successfully created categorized custom properties already and can read/save them in XRecords via the OPM. I further implemented the members for IDynamicEnumProperty (using an ObjectARX DLL) in .NET/C# which are:

// ENUM-PROPERTY INTERFACE METHODS DEFINITIONenum myEnum{ steel = 0, copper, wood};public void GetNumPropertyValues( int numValues ){ numValues = 3;}public void GetPropValueName( int index, out String valueName ){ valueName = Enum.GetName(typeof(myEnum), index);}public void GetPropValueData( int index, ref Object valueName ){ valueName = index;}

And I have implemented the GetCurrentValueData() and SetCurrentValueData() members in my .NET/C# wrapper as per the IDynamicProperty2 interface as following:

public void GetCurrentValueData( Object pUnk, ref Object varData ) {AcadObject obj = pUnk as AcadObject; if ( obj != null ){using ( Active .Document.LockDocument( DocumentLockMode.ProtectedAutoWrite, null, null, true ) ){using ( var tr = Active.Transaction ){ObjectId ObjId = new ObjectId( (IntPtr) obj.ObjectID ); DBObject DbObj = tr.GetObject( ObjId, OpenMode.ForRead ); if ( DbObj != null ){try {if (
[code]....

This code compiles without error but instead of the expected drop-down list the OPM only shows a field where I can enter or edit integer numbers, but there is no drop-down list when clicking on the field....

View 1 Replies View Related

AutoCAD .NET :: Sheet Set Custom Property Field TransmittalSetups?

Dec 12, 2012

The SheetSetObject has an inbuilt custom property called "TransmittalSetups", but the property has a different internal object structure compared to other CustomProperty 

Ie: 

[code]

Dim myPropEnum As IAcSmEnumProperty = myCPB.GetPropertyEnumerator
Dim myPropName As String = Nothing
Dim myPropValue As AcSmCustomPropertyValue = Nothing


myPropEnum.Next(myPropName, myPropValue)

[/code]

myPropName is a string, and in this instance it returns a value of "TransmittalSetups"

myPropValue.GetValue is a string, and it says "System.__ComObject" not a "value".

So my question is, how do identify this object, how to interigate it or assign it to its native object type.

I have tried to cast it to different IAcSmEnum types but without success.

View 9 Replies View Related

AutoCAD Inventor :: Custom Property Format In ILogic

Sep 21, 2011

I would like to set the custom property format for all user paramters from an iLogic code. This is what I've come up with. It runs, but it does not seem to alter the custom property format. What am I doing wrong here?

DimoPartDocAsPartDocument
oPartDoc=ThisApplication.ActiveDocument
DimoParameterAsParameter
ForEachoParameterInoPartDoc.ComponentDefinition.Parameters
oParameter.ExposedAsProperty=True
ShowUnitString=True
ShowLeadingZeros=True
ShowTrailingZeros=False
Precision=kTwoDecimalPlacesPrecision
NextoParameter

i7-2720QM Dell Precision M6600, Win 7 Pro 64-bit, 8GB RAM
Autodesk Product Design Suite Ultimate 2013
Autodesk Vault Professional 2013

View 9 Replies View Related

AutoCAD Inventor :: Custom Property Format Default?

Oct 25, 2013

In the parameters window you can right click a value and choose a custom property format.

We always change everything to fraactional instead of decimal.

Is there a way to set this as default?

View 6 Replies View Related

AutoCAD Dynamic Blocks :: Sheet Set Custom Property Field

Mar 1, 2012

I am having trouble getting a field in a multi leader which is part of a block to reference a sheet set custom property. I have fields within mtext in paper space that are not blocked that are referencing correctly but just not in my blocks.

View 9 Replies View Related

AutoCAD Inventor :: Getting A Drawing Border To Act On A Modified Custom Property

Feb 20, 2012

The company I work for produce drawings for various types of fabrication.

Using Inventor I have a drawing border in which tolerance values change depending on the type of fabrication to be produced. The type of fabrication (0,1,2,or 3) is designated by a custom property entered during part/fab model creation.

This property may change depending on various production factors. The issue I have is how do I get the border to recognize this potential change in fab type and populate the tolerance fields with the necessary information? 

View 3 Replies View Related

AutoCAD Architecture :: Custom Property Set Definitions To Add Information To Spaces

Dec 13, 2013

I am using some custom property set definitions to add information to spaces.  However as I insert spaces I find that I have to go to the extra step to add the property set to the object using the Extended Data tab in the Properties Palette. 

It is not a huge deal but sometimes it is forgotten and schedules are not reporting properly, or the display theme is not correct.  Although there are tools to quickly add them I would like to know if there is an automatic way to add them while creating the spaces/zones.

On a related note.  There is a property set definition that is in each file by default called RoomFinishObjects.  Is there a way to purge this?  I don't want to attach finishes to my objects.  But it seems to be embedded in the file.

View 4 Replies View Related

AutoCAD Inventor :: Keeping Custom Property Date Blank

Mar 22, 2013

My company has a custom property named 'Released date, Type Date.

This date is still empty

I am working on a rule that adds all the custom properties required for the company title block.

This rule can be useful whenever you get a model from a supplier.

I can add a custom property date using the following

Dim oDoc As Document = ThisApplication.ActiveDocument
Dim customPropertySet As PropertySet = oDoc.PropertySets.Item("Inventor User Defined Properties")
Try
iProperties.Value("Custom", "Released Date") = iProperties.Value("Custom", "Released Date")
Catch

[Code]...
 
This code works but sets the released date to Now.

But the release date needs to remain blank when adding.

I tried to make the value Null but I get the error:

"Value of type 'System.DBNull' cannot be converted to 'Date'."

Is there a way to keep a custom property date blank?

View 2 Replies View Related

AutoCAD 2010 :: Modify Sheet Set Custom Property Definitions

May 3, 2012

I FINALLY decided to get my head around the Sheet Set Manager (kudos to Kate Morrical's video series).

I understand the need to create custom properties, and I can see that you can either "add" or "delete" custom properties, but is there any way to CHANGE the property after it's been defined?

For example, if I create a custom property complete with a default value, but discover later that I made a spelling mistake (eg. "Darwn By" instead of "Drawn By"), is there any way to MODIFY it?

View 1 Replies View Related

AutoCAD 2013 :: Sheet Set - Adding Space To Default Custom Property

Jul 18, 2013

I'm tasked with setting up a new dwt file to be used along with the Sheet Set Manager.

I've got as far as adding in my own custom properties at both the Sheet Set level (things like project name, site name, etc.), and at the Sheet level (drawing title).

But more specifically, at the Sheet Level, I want to be able to facilitate having a multi-line drawing title. Things start to get a little cloudy.

In order to be able to control where the line breaks are, I've simply created 5 fields (3 for an odd number of lines, 2 for even), and I want to set their Default Value so they don't display anything, i.e. a space or blank of some kind, instead of the four dots. So when I want to add the title I go to the Sheet properties and change the value.

I thought it'd be as simple as adding the ASCII code for a space (U+00A0) into the Default Value, but that seems to display the text U+00A0 instead of the space.

View 2 Replies View Related

AutoCAD Inventor :: Custom Property Link From Drawing To Part Breaks

Jul 14, 2012

I'm trying to see if I can write a rule that will link a custom property at the part level in a template and have it update when I copy the part and drawing to a new design.  Below is the formula I'm using and it works in the original files but when I use Design Assistant to create a copy for a new design, this formula will not update.

iProperties.Value("Custom", "Title")=Parameter("Bearing_#01.ipt.Build_Title")

View 5 Replies View Related

AutoCAD Inventor :: Make Part Number To Be A Custom Property ILogic?

Oct 31, 2013

I have a part number that i want to defined in custom properties.

Then would it be possible to call it out in Ilogic? that way in any drawing doesn't matter where the part number will always be the same for that part when i balloon and the same in the BOM.

View 4 Replies View Related

AutoCAD Inventor :: Change Custom Property Format From Assembly Level

Apr 8, 2013

I have a frame fabrication / assembly with a Custom iProperty called "FINISHED MATERIAL SIZE". I have set the following parameter for this property:

FINISHED MATERIAL SIZE = <Stock Number> x <G_L>mm

This returns the stock size and length to my drawing cutlist. The problem is that the <G_L> Parameter returns the trailing zeros and unit string.

I would like to set all the frame members in the assembly such that the G_L parameter returns a value rounded off to 0 decimal places with no trailing zeros and removes the unit string as well.

Is there a way I can achieve this from the assembly so I don't have to manually open each frame member and make the changes in the fx parameters dialog one at a time?

View 3 Replies View Related

AutoCAD Inventor :: Model Custom Property To Sketch Symbol Definition

Sep 29, 2011

How would i insert the "variable name" of a custom iProp to a sketched symbol definition (in an idw)?

I can plonk the value of the iProp in no worries, but to make it "live" is a bit beyond me...

 Sub WeldNote()On Error Resume NextDim oDoc As DrawingDocumentDim SketchedSym As SketchedSymbolDefinitionDim oNoteDef As SketchedSymbolDefinitionDim oDefSketch As SketchDim oTextbox As TextBoxDim SNewText As StringDim sNoteText As StringDim oReffedDoc As DocumentDim lReffedWeldType As Long'Err.ClearIf

[Code].....

View 9 Replies View Related

AutoCAD 2010 :: Import / Exp​ort Layer Property Custom Filters

Nov 14, 2012

I need importing and exporting custom layer property filters. Long story short, we XREF a lot of mechanical equipment in our models and when we create a structural drawing make all of the mechanical item print in a light ghosted color. I created a layer property filter with a huge list of all the possible equipment prefix's like *cl-* *tk-* *rv-* and so on to filter out all the equipment layers. It took a long time to create, so I want to export it and import it into future drawing.

View 1 Replies View Related

AutoCAD Civil 3D :: Expressions Losing Custom Pipe Property Reference

Jun 28, 2012

Having problems using custom pipe properties in pipe label expressions in 2013? I have some expressions relating to stub callouts and the ones that directly reference the custom properties lose that reference every so often.

For example I have and expression called "STUB-Riser-Length2d" which is defined as "{Riser Length} / SQRT(2)" where "Riser Length" is the custom pipe property. Every week or so it changes to "/ SQRT(2)".

I haven't been able to find the pattern as to exactly when this happens yet. All expressions not referencing custom properties seem to be holding steady. The pipe catalog is on a shared drive on the network, if that makes any difference.

Civil 3D 2013 - Windows 7 Pro 64 - Dell T3500 - Xeon 2.67 - 24gb - Quadro 600

View 4 Replies View Related

AutoCAD Inventor :: How To Set Default Unit String Unchecked In Parameters Custom Property Format

Aug 24, 2013

I have generated frame that has 100 members in it. Is there a quicker way of changing G_L unit to a mm so that I don't have to go into all 100 parts to change the custom properties? also I do not need unit string to be appear in my BOM.

View 2 Replies View Related

AutoCAD .NET :: Unable To Find Font Property In Mtext Object

Jan 24, 2012

I have 26000 mtext that has overridden font inside the property. set to bold and print out look like crap.

see attached i want all the text to look like the text on the left. right is what they look like now. i just copied a few as an example.

can't find the font property in the mtext object:

PrivateSub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesButton1.Click
Dim doc AsDocument = Application.DocumentManager.MdiActiveDocument
Dim db AsDatabase = doc.Database
[code]......

View 2 Replies View Related

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 .NET :: How To Set Custom File Property Without Opening File

Jun 27, 2012

By Opening File into AutoCAD I can set the Custom Property(dwgname,dwgid,projectname) of the File. But I want to set value of these properties without opening AutoCAD application.

I can set it using:
public void SetAttributes(Hashtable hashTable,String fileOpenPath){
Document Doc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.Open(fileOpenPath);

Can we create this Object using any other way??

Database Db = Doc.Database;            
DatabaseSummaryInfoBuilder DbSib = new DatabaseSummaryInfoBuilder();
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = Db.TransactionManager;
using (Transaction aTran = tm.StartTransaction())

[Code] .......

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

AutoCAD Architecture :: Unable To Edit Custom Pallets

Mar 15, 2012

I created my own tools of own content on my own pallets and then found . you can drag a whole tab into the browser to quickly archive your tools. Having reinstalled I have 'dropped the collections back to ACA12 and all my tools restored.

However I can no longer edit or add to these tool pallets. I cannot edit any properties within tools either. There is no lock symbol on the pallet that I can see, only a refresh symbol.

The .atc file they reference (found from the Content Browser location they came from) is not set to read only.  Permissions seem to be set to allow read, modify, write etc. I first used the 'My Tool Catalog' provided but also copied it all back to a new catalog but it's still locked.  

View 2 Replies View Related

AutoCad :: Sheet Set Manger / Unable To Setup Custom Properties

May 15, 2012

Now that I have all my custom properties set up I can't seem to update the custom ones that I made. The custom properties I have added do not seem to work when I update them the through the Sheet Set Manger properties.

View 5 Replies View Related

AutoCad :: Unable To Delete Viewport Frame To Make Custom One

Sep 20, 2012

I am having issues with creating viewports in the attached file. When I open the layout, say layout 3, it shows the viewport frame but I cannot highlight it in order to delete it. This is a setting in this file I have inadvertently turned on or off. I have created a new file, done a scribble, opened a layout and deleted the viewport.

View 9 Replies View Related

AutoCAD Inventor :: Unable To Create Custom Tube And Pipe Style

May 20, 2013

I can not create a new pipe section.   İn inventor  2013, at the tube and pipe style   

I watched these steps . still not

[URL].......

[URL]........

[URL]........

View 5 Replies View Related

AutoCAD Inventor :: Unable To Emboss Stretched Text With Custom Font?

Sep 6, 2013

I am engraving a company logo on to the outside of a round tube with a custom font.  There are two boxes of text that I am engraving.  The first box works just fine with the "Emboss" tool.  The second line works fine when the "% Stretch" parameter in the text edit window is left at 100%.  When I change the "% Stretch" to 85%, I get the "Self-intersecting loop found in this profile" error message.  I get this error message when I try stretching it to 115% as well.  I changed the font to a standard font and I was able to emboss the text no matter the "% Stretch" value.

The bottom line is Inventor will not emboss text that has a custom font and a modified stretch percentage. This line of text must be stretched to match the company logo.

View 2 Replies View Related

AutoCAD Inventor :: Unable To Create Custom Frame Member Part

Jun 28, 2010

I created a template part, turned it into an I-part and published it successfully as a Frame Member.

The custom member was published into a custom library that is read/write.  I was forced to create this library in order to publish the part.

When I go to use the custom profile with the frame generator, I am able to find the custom member in the dialog but when the frame generator tries to generate the part, I get this error message:

[WARNING] Frame Generator: Errors occurred during inserting Frame Member(s)
[WARNING] Insertion of frame member(s) failed
[ERROR] A frame member could not be created.  The template file for Unnamed GIRT-2 could not be located in the Content Center library.

View 9 Replies View Related







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