revit中引數都有乙個組,我們通過definition.parametergroup 將會返回乙個builtinparametergroup型別的列舉物件。
如何獲得這個對應的中文組的名字?
答:通過
labelutils.getlabelfor(builtinparametergroup)既可以返回你要的結果。
labelutils還可以返回內建引數的對應字串,顯示單位,引數型別等等內建型別的對應字串。
下面是所有可用的函式。
getlabelfor(builtinparameter)
gets the user-visible name for a builtinparameter.
getlabelfor(builtinparametergroup)
gets the user-visible name for a builtinparametergroup.
getlabelfor(displayunittype)
gets the user-visible name for a displayunittype.
getlabelfor(parametertype)
gets the user-visible name for a parametertype.
getlabelfor(unitsymboltype)
gets the user-visible name for a unitsymboltype.
getlabelfor(unittype)
gets the user-visible name for a unittype.
getlabelfor(ductlossmethodtype, document)
gets the user-visible name for a ductlossmethodtype.
getlabelfor(gbxmlbuildingtype, document)
gets the user-visible name for a gbxmlbuildingtype.
getlabelfor(pipeflowstate, document)
gets the user-visible name for a pipeflowstate.
getlabelfor(pipelossmethodtype, document)
gets the user-visible name for a pipelossmethodtype.
如何程式設計訪問(讀,寫)Revit專案資訊
我們經常需要訪問revit的模型資訊,本文介紹些如何獲取專案資訊以及讀寫專案名稱或專案編號等資訊。revit的專案由projectinfo這個類來表示,在乙個檔案中,只有乙個這個類的例項,可以從document.projectinformation 屬性獲得這個唯一的物件。revit的專案名稱,專案...
Revit 程式設計獲取牆側面的兩種方法
讀了葉老師 如何程式設計讀取牆的輪廓線 的文章 我寫了幾行 實現其中獲取牆側面的部分。另外,我試了一下,也可以通過hostobjectutils.getsidefaces達到同樣的目的。第一種方法 通過牆的幾何資訊獲得牆的solid,然後遍歷solid的所有表面,找到其法向量與wall.orient...
學習SpringMVC 如何獲取請求引數
requestparam pathvariable queryparam cookievalue modelandview modelattribute controller的註解,該註解在springmvc 中,負責處理由dispatcherservlet 分發的請求,它把使用者請求的資料經過業務...