Message 1 of 9
Changing AttributeReference InsertionPoints

Not applicable
08-17-2000
03:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am having difficulty changing AttributeReference InsertionPoints. My code is like:
varAttributes = bkrBlockRef.GetAttributes
For i = LBound(varAttributes) To UBound(varAttributes)
j = varattributes(i).InsertionPoint
j(1) = j(1) - 19.5
varAttributes(i).InsertionPoint = j
Next i
I get no error message, but the assignment
doesn't take. If I use subscripts like this:
For i = LBound(varAttributes) To UBound(varAttributes)
j = varattributes(i).InsertionPoint
j(1) = j(1) - 19.5
varAttributes(i).InsertionPoint(1) = j(1)
Next i
then I get an error "Object is not a collection"
Any help....?
--Wayne
varAttributes = bkrBlockRef.GetAttributes
For i = LBound(varAttributes) To UBound(varAttributes)
j = varattributes(i).InsertionPoint
j(1) = j(1) - 19.5
varAttributes(i).InsertionPoint = j
Next i
I get no error message, but the assignment
doesn't take. If I use subscripts like this:
For i = LBound(varAttributes) To UBound(varAttributes)
j = varattributes(i).InsertionPoint
j(1) = j(1) - 19.5
varAttributes(i).InsertionPoint(1) = j(1)
Next i
then I get an error "Object is not a collection"
Any help....?
--Wayne