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

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

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

説明

IP タイプに基づいて IP ハンドラーの一意のオブジェクトを取得します。

構文

get_ip_handler(<type>)

戻り値

指定された IP タイプの PdmIpHandler オブジェクト。

パラメーター

名前 説明
<type> IP タイプ。

# List available IP types for the current part
proj = open_project('my_design.pdm')
# proj.ip_types == ['MRMAC', 'DDRMC', 'GTH', ...]
# Get an IP handler for a specific IP type
mrmac_handler = proj.get_ip_handler('MRMAC')
ddrmc_handler = proj.get_ip_handler('DDRMC')
gth_handler = proj.get_ip_handler('GTH')