Revit编程如何获取内置参数对应的中文字符串?

时间:2022-08-27 23:17:15


Revit中参数都有一个组,我们通过Definition.ParameterGroup 将会返回一个BuiltInParameterGroup类型的枚举对象。

如何获得这个对应的中文组的名字?


答:

通过

LabelUtils.GetLabelFor(BuiltInParameterGroup) 既可以返回你要的结果。


LabelUtils还可以返回内置参数的对应字符串,显示单位,参数类型等等内置类型的对应字符串。

下面是所有可用的函数。


Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(BuiltInParameter) Gets the user-visible name for a BuiltInParameter.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(BuiltInParameterGroup) Gets the user-visible name for a BuiltInParameterGroup.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(DisplayUnitType) Gets the user-visible name for a DisplayUnitType.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(ParameterType) Gets the user-visible name for a ParameterType.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(UnitSymbolType) Gets the user-visible name for a UnitSymbolType.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(UnitType) Gets the user-visible name for a UnitType.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(DuctLossMethodType, Document) Gets the user-visible name for a DuctLossMethodType.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(gbXMLBuildingType, Document) Gets the user-visible name for a gbXMLBuildingType.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(PipeFlowState, Document) Gets the user-visible name for a PipeFlowState.
Revit编程如何获取内置参数对应的中文字符串?Revit编程如何获取内置参数对应的中文字符串? GetLabelFor(PipeLossMethodType, Document) Gets the user-visible name for a PipeLossMethodType. 

转载请复制以下信息:
原文链接: http://blog.csdn.net/joexiongjin/article/details/10149127
作者:  叶雄进 , Autodesk ADN