Message 1 of 2
Read / write i Property "Title"

Not applicable
09-26-2007
06:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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"
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"