サマリー
A parameter associated with a network attribute.
説明
Using networkQuery.attributeParameters(attribute) returns an iterable of AttributeParameter objects. You can loop through the iterable to get the individual AttributeParameter objects.
プロパティ
プロパティ | 説明 | データ タイプ |
name (読み取り専用) | The attribute parameter name. | String |
usage (読み取り専用) | The attribute parameter usage. | AttributeParameterUsage |
value (読み取り専用) | The attribute parameter value. This could be an integer, a string, a float, a boolean or none. | Object |
コードのサンプル
att_parameters = self.networkQuery.attributeParameters(att)
lst = list(att_parameters)
for att_param in lst:
print(f"lst {att_param.name},{att_param.value},{att_param.usage}")