Is it possible to change a constant attribute using code after it is inserted into a drawing? TIA
First open Dev help menu and look up "getconstantattributes" will give general info on constant attributes and some samples 'Select your block set to blkObj Dim attObj As AcadAttribute Dim blkObj As AcadBlockReference Dim varObj As Variant Dim strObj As String strObj = "My Changed Constant" varObj = blkObj.GetConstantAttributes'array of block Constants Set attObj = varObj(0)'choose constant in arrary attObj.TextString = strObj'set to new string... This should do it...If not let me know..