remove_records(...) - remove_records(...) - 2026.1 日本語 - UG1781

Power Design Manager Python スクリプト ガイド (UG1781)

Document_ID
UG1781
Release_Date
2026-06-23
Version
2026.1 日本語

説明

指定された名前のレコードを削除します。

構文

remove_records([<record_names>])

パラメーター

名前 説明
[<record_names>] レコード名のリスト。

デフォルト: 使用可能なすべてのレコード名

# Remove specific records from a resource
proj = open_project('my_design.pdm')
io_config = proj.get_block('io').get_resource('io_config')
io_config.remove_records(['io_inst1', 'io_inst2'])
# Remove all records from a resource
io_config.remove_records()