Text in an Existing Block
Text in an Existing Block
(OP)
How do I change the Text in an Existing Block?
The ACADBlock it's self does not have a TextString property or a Update property..
Thanks
Will
The ACADBlock it's self does not have a TextString property or a Update property..
Thanks
Will





RE: Text in an Existing Block
RE: Text in an Existing Block
For Each acBlock In ThisDrawing.blocks 'check against block collection
'Toggle through each object in block
For intCnt = 0 To acBlock.Count - 1
If acBlock(intCnt).objectName = "AcDbText" Then
acBlock(intCnt).ScaleFactor = dblTxtSclFac
acBlock(intCnt).Update
End If
Next intCnt
Next acBlock
"Everybody is ignorant, only on different subjects." — Will Rogers