| On this page | |
| Since | 20.0 |
graph 内の portid で指定されたポートのメタデータを取得します。
入力 ¶
graph:
ApexGraphHandle
照会するポートを含んだグラフ。
portid:
ApexPortID
データを照会するポート。
出力 ¶
name:
String
ポートの名前。
alias:
String
ポートのエイリアス。
datatype:
String
ポートが受け入れるデータタイプ。
porttype:
String
ポートの接続タイプ。
ここには、inputまたはoutputのどちらかを指定することができます。
isconnected:
Bool
ポートがグラフ内で接続されていればTrueを返します。
ispromoted:
Bool
ポートがグラフ入力までプロモートされていればTrueを返します。
linkedport:
ApexPortID
Returns the port that is “linked” to portid. portid is linked if:
-
It is a spare or in-place port. In this case, linkedport is set to the corresponding input/output port on the node. For example, if portid is set to the array output port below, linkedport will be set to the array input port:
-
It is an input or output port on a subgraph or subnet. In this case, linkedport is set to the corresponding external/internal port on the subgraph or subnet. For example, if portid is set to port a on the
parmsnode below, linkedport will be set to port a on thesubnetnode:
External ports on the subnet (left), subnet contents with the internal input and output ports (right)
| See also |