delete_imported_data# Hfss3dLayout.delete_imported_data(name: str) → bool# Delete imported data. Parameters: namestrTable to delete. Returns: boolTrue when successful, False when failed. References >>> oModule.RemoveImportData Examples >>> from ansys.aedt.core import Hfss3dlayout >>> h3d = Hfss3dlayout() >>> table_name = h3d.import_table(input_file="my_file.csv") >>> h3d.delete_imported_data(table_name)