def get_block_objects(block_ref):
try:
block_name = block_ref.Name
block_table_record = block_ref.Database.Blocks.Item(block_name)
return block_table_record
except Exception as e:
print(f”Error accessing BlockTableRecord: {e}”)
return None
def copy_circle_to_clipboard(circle_entity):
try:
circle_entity.Copy()
print(“The circle has been copied to the clipboard.”)
return True
except Exception as e:
print(f”Error when copying circle to clipboard: {e}”)
return False
I can’t correct copy object in block editor and paste in model space. I want correct copy and paste object.
AG1LE is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.