Read / write i Property "Title"

Read / write i Property "Title"

Anonymous
Not applicable
271 Views
1 Reply
Message 1 of 2

Read / write i Property "Title"

Anonymous
Not applicable
How can I write into iproperty "Title". The "Part Number" is in "Design Tracking Properties".
Her is my code for writing in the "Part Number" property, but i can't write in the "Title" property.
I've tried " Doc Summary Information" and "Summary Information" but nothing seens to work - can I get som help - thanks. Henrik



Dim InvDoc As Document
Set InvDoc = ThisApplication.ActiveDocument

Dim InvDesignIngo As PropertySet
Set InvDesignIngo = InvDoc.PropertySets.Item("Design Tracking Properties")

Dim invPartNumberProperty As Property
Set invPartNumberProperty = InvDesignIngo.Item("Part Number")

invPartNumberProperty.Value = "part-001-hvj_xxx"
0 Likes
272 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
The title is in the Summary Information
CVA

--
www.CVAengineering.com

IV11 Pro. sp2 and IV2008 Pro. sp1
Window XP Pro sp2
Pentium 3.2 Ghz, 3.0 GB of RAM
NVIDIA FX 3400 91.85
SpacePilot V 3.3.6
wrote in message news:5732213@discussion.autodesk.com...
How can I write into iproperty "Title". The "Part Number" is in "Design
Tracking Properties".
Her is my code for writing in the "Part Number" property, but i can't write
in the "Title" property.
I've tried " Doc Summary Information" and "Summary Information" but nothing
seens to work - can I get som help - thanks. Henrik



Dim InvDoc As Document
Set InvDoc = ThisApplication.ActiveDocument

Dim InvDesignIngo As PropertySet
Set InvDesignIngo = InvDoc.PropertySets.Item("Design Tracking Properties")

Dim invPartNumberProperty As Property
Set invPartNumberProperty = InvDesignIngo.Item("Part Number")

invPartNumberProperty.Value = "part-001-hvj_xxx"
0 Likes