※当ブログでは商品・サービスのリンク先にプロモーションを含みます。ご了承ください。

RevitAPI

【RevitAPI】BuiltInCategory日本語名の一覧

BuiltInCategory日本語名の一覧表みたいなのが欲しかったので作ってみました。

BuiltInCategory日本語名取得の準備:namespace追加

結果はcsvにでも出力することとします。

SaveFileDialogとかStreamWriterとか使うので、参照を追加してusingディレクティブを追記します。

usingディレクティブ
using WF = System.Windows.Forms;
using System.IO;
using System.Text;
※上記コードをThisApplication.csにコピペでそのまま使えます。

 

上記でSystem.Windows.FormsをWFとしているのはAutodesk.Revit.DB.ViewSystem.Windows.Forms.ViewとViewクラスが重複しているのでエラー回避のためです。

BuiltInCategory日本語名取得:サンプルコード

そして出力用に書いたコードが下記のSampleメソッドです。

public void Sample()
{
  Autodesk.Revit.UI.UIDocument uidoc = this.ActiveUIDocument;
  Autodesk.Revit.DB.Document doc = uidoc.Document;
  
  int counter = 1;
  string message = "";
  foreach(BuiltInCategory builtInCategory in Enum.GetValues(typeof(BuiltInCategory)))
  {
    try
    {
      message += counter + "," + (int)builtInCategory + "," + builtInCategory + "," + Category.GetCategory(doc, (BuiltInCategory)(int)builtInCategory).Name + "\n";
    }
    catch
    {
      message += counter + "," + (int)builtInCategory + "," + builtInCategory + "," + "\n";
    }
    counter += 1;
  }
  
  WF.SaveFileDialog saveFileDialog = new WF.SaveFileDialog();
  saveFileDialog.FileName = "FileName.csv";
  saveFileDialog.Filter = "csvファイル(*.csv;*.csv)|*.csv;*.csv|すべてのファイル(*.*)|*.*";
  saveFileDialog.FilterIndex = 1;
  saveFileDialog.Title = "Title";
  saveFileDialog.RestoreDirectory = true;
  saveFileDialog.OverwritePrompt = true;
  saveFileDialog.CheckPathExists = true;
  
  if(saveFileDialog.ShowDialog() != WF.DialogResult.OK)
  {
    TaskDialog.Show("Message" , "中断します。");
    return;
  }
  
  string index = "No.,Id,BuiltInCategory,日本語カテゴリ名\n";
  using(StreamWriter streamWriter = new StreamWriter(saveFileDialog.FileName, false, Encoding.GetEncoding(932)))
  {
    streamWriter.Write(index + message);
    TaskDialog.Show("Result" , ".csvファイルを保存しました。");
  }
}
※上記コードをThisApplication.csにコピペでそのまま使えます。

 

BuiltInCategory日本語名取得:結果

出力したcsvが下表のようになります。

BuiltInCategoryとそれに対応する日本語名だけ表示しています。

空白は現在は使われてないBuiltInCategoryでしょうか?

日本語名の重複も所々ありますね。

BuiltInCategoryとそれに対応する日本語名

 

BuiltInCategory 日本語カテゴリ名
OST_StackedWalls_Obsolete_IdInWrongRange
OST_MassTags_Obsolete_IdInWrongRange
OST_MassSurface_Obsolete_IdInWrongRange
OST_MassFloor_Obsolete_IdInWrongRange
OST_Mass_Obsolete_IdInWrongRange
OST_WallRefPlanes_Obsolete_IdInWrongRange
OST_StickSymbols_Obsolete_IdInWrongRange
OST_RemovedGridSeg_Obsolete_IdInWrongRange
OST_PointClouds 点群
OST_AssemblyOrigin_Lines
OST_AssemblyOrigin_Planes
OST_AssemblyOrigin_Points
OST_AssemblyOrigin
OST_LinksAnalytical 解析用リンク
OST_FoundationSlabAnalyticalTags 解析用べた基礎タグ
OST_WallFoundationAnalyticalTags 解析用布基礎タグ
OST_IsolatedFoundationAnalyticalTags 解析用独立基礎タグ
OST_WallAnalyticalTags 解析用壁タグ
OST_FloorAnalyticalTags 解析用床タグ
OST_ColumnAnalyticalTags 解析用柱タグ
OST_BraceAnalyticalTags 解析用ブレース タグ
OST_BeamAnalyticalTags 解析用梁タグ
OST_AnalyticalNodes_Lines
OST_AnalyticalNodes_Planes
OST_AnalyticalNodes_Points
OST_AnalyticalNodes 解析用ノード
OST_RigidLinksAnalytical
OST_FoundationSlabAnalytical 解析用べた基礎
OST_WallFoundationAnalytical 解析用布基礎
OST_IsolatedFoundationAnalytical 解析用独立基礎
OST_WallAnalytical 解析用壁
OST_FloorAnalytical 解析用床
OST_ColumnEndSegment 上端セグメント
OST_ColumnStartSegment 下端セグメント
OST_ColumnAnalytical 解析用柱
OST_BraceEndSegment 終端セグメント
OST_BraceStartSegment 始端セグメント
OST_BraceAnalytical 解析用ブレース
OST_BeamEndSegment 終端セグメント
OST_BeamStartSegment 始端セグメント
OST_BeamAnalytical 解析用梁
OST_CompassSecondaryMonth
OST_CompassPrimaryMonth
OST_CompassSectionFilled
OST_LightLine
OST_MultiSurface
OST_SunSurface
OST_Analemma
OST_SunsetText
OST_CompassSection
OST_CompassOuter
OST_SunriseText
OST_CompassInner
OST_SunPath2
OST_SunPath1
OST_Sun
OST_SunStudy
OST_StructuralTrussStickSymbols スティック記号
OST_StructuralTrussHiddenLines
OST_TrussChord 弦材
OST_TrussWeb ウェブ
OST_TrussBottomChordCurve
OST_TrussTopChordCurve
OST_TrussVertWebCurve
OST_TrussDiagWebCurve
OST_Truss
OST_RailingSystemTransitionHiddenLines_Deprecated
OST_RailingSystemTerminationHiddenLines_Deprecated
OST_RailingSystemRailHiddenLines_Deprecated
OST_RailingSystemTopRailHiddenLines_Deprecated
OST_RailingSystemHandRailBracketHiddenLines_Deprecated
OST_RailingSystemHandRailHiddenLines_Deprecated
OST_RailingSystemPanelBracketHiddenLines_Deprecated
OST_RailingSystemPanelHiddenLines_Deprecated
OST_RailingSystemBalusterHiddenLines_Deprecated
OST_RailingSystemPostHiddenLines_Deprecated
OST_RailingSystemSegmentHiddenLines_Deprecated
OST_RailingSystemHiddenLines_Deprecated
OST_StairStringer2012HiddenLines_Deprecated
OST_StairTread2012HiddenLines_Deprecated
OST_StairLanding2012HiddenLines_Deprecated
OST_StairRun2012HiddenLines_Deprecated
OST_Stairs2012HiddenLines_Deprecated
OST_MassHiddenLines 隠線
OST_CurtaSystemHiddenLines 隠線
OST_OBSOLETE_ElemArrayHiddenLines
OST_EntourageHiddenLines 隠線
OST_PlantingHiddenLines 隠線
OST_SpecialityEquipmentHiddenLines 隠線
OST_TopographyHiddenLines 隠線
OST_StructuralFramingSystemHiddenLines_Obsolete
OST_SiteHiddenLines 隠線
OST_RoadsHiddenLines 隠線
OST_ParkingHiddenLines 隠線
OST_PlumbingFixturesHiddenLines 隠線
OST_MechanicalEquipmentHiddenLines 隠線
OST_LightingFixturesHiddenLines 隠線
OST_FurnitureSystemsHiddenLines 隠線
OST_ElectricalFixturesHiddenLines 隠線
OST_ElectricalEquipmentHiddenLines 隠線
OST_CaseworkHiddenLines 隠線
OST_DetailComponentsHiddenLines 隠線
OST_ShaftOpeningHiddenLines 隠線
OST_GenericModelHiddenLines 隠線
OST_CurtainWallMullionsHiddenLines 隠線
OST_CurtainWallPanelsHiddenLines 隠線
OST_RampsHiddenLines 隠線
OST_StairsRailingHiddenLines 隠線
OST_StairsHiddenLines 隠線
OST_ColumnsHiddenLines 隠線
OST_FurnitureHiddenLines 隠線
OST_LinesHiddenLines 隠線
OST_CeilingsHiddenLines 隠線
OST_RoofsHiddenLines 隠線
OST_DoorsHiddenLines 隠線
OST_WindowsHiddenLines 隠線
OST_StructConnectionProfilesTags プロファイル タグ
OST_StructConnectionHoleTags 穴タグ
OST_CouplerHiddenLines 隠線
OST_CouplerTags 構造鉄筋カプラーのタグ
OST_Coupler 構造鉄筋カプラー
OST_StructConnectionWeldTags 溶接タグ
OST_StructConnectionShearStudTags 頭付スタッド タグ
OST_StructConnectionAnchorTags アンカー タグ
OST_StructConnectionBoltTags ボルト タグ
OST_StructConnectionPlateTags プレート タグ
OST_RebarHiddenLines 隠線
OST_StructSubConnections
OST_StructConnectionModifiers モディファイヤ
OST_StructConnectionWelds 溶接
OST_StructConnectionHoles
OST_StructConnectionShearStuds 頭付スタッド
OST_StructConnectionNobleWarning
OST_StructConnectionOthers その他
OST_StructConnectionBolts ボルト
OST_StructConnectionTags 構造接合タグ
OST_StructConnectionAnchors アンカー
OST_StructConnectionPlates プレート
OST_StructConnectionProfiles プロファイル
OST_StructConnectionReference 参照
OST_StructConnectionFailed
OST_StructConnectionStale
OST_StructConnectionSymbol 記号
OST_StructConnectionHiddenLines 隠線
OST_StructWeldLines
OST_StructConnections 構造接合
OST_FabricAreaBoundary 境界
OST_FabricReinSpanSymbol 構造メッシュ筋の記号
OST_FabricReinforcementWire メッシュ筋用ワイヤ
OST_FabricReinforcementBoundary 境界
OST_RebarSetToggle 鉄筋セットを切り替え
OST_FabricAreaTags
OST_FabricReinforcementTags 構造メッシュ筋のタグ
OST_AreaReinTags 構造面配筋のタグ
OST_RebarTags 構造鉄筋タグ
OST_FabricAreaSketchSheetsLines <メッシュ筋>
OST_FabricAreaSketchEnvelopeLines <メッシュ筋エンベロープ>
OST_FabricAreas 構造メッシュ筋エリア
OST_FabricReinforcement 構造メッシュ筋
OST_RebarCover 鉄筋かぶり参照
OST_CoverType
OST_RebarShape 鉄筋形状
OST_PathReinBoundary 境界
OST_PathReinTags 構造パス配筋タグ
OST_PathReinSpanSymbol 構造パス配筋記号
OST_PathRein 構造パス配筋
OST_Cage
OST_AreaReinXVisibility
OST_AreaReinBoundary 境界
OST_AreaReinSpanSymbol 構造面配筋の記号
OST_AreaReinSketchOverride
OST_AreaRein 構造面配筋
OST_RebarLines
OST_RebarSketchLines
OST_Rebar 構造鉄筋
OST_FabricationPipeworkInsulation 断熱材
OST_FabricationDuctworkLining ライニング
OST_FabricationContainmentDrop 立下り
OST_FabricationContainmentRise 立上り
OST_FabricationPipeworkDrop 立下り
OST_FabricationPipeworkRise 立上り
OST_FabricationContainmentSymbology 記号
OST_FabricationContainmentCenterLine 中心線
OST_FabricationContainmentTags MEP 製造用収納部品タグ
OST_FabricationContainment MEP 製造用収納部品
OST_FabricationPipeworkSymbology 記号
OST_FabricationPipeworkCenterLine 中心線
OST_FabricationPipeworkTags MEP 製造用配管部品タグ
OST_FabricationPipework MEP 製造用配管部品
OST_FabricationDuctworkSymbology 記号
OST_FabricationDuctworkDrop 立下り
OST_FabricationDuctworkRise 立上り
OST_FabricationHangerTags MEP 製造用ハンガー部品タグ
OST_FabricationHangers MEP 製造用ハンガー部品
OST_OBSOLETE_FabricationPartsTmpGraphicDropDrag
OST_FabricationPartsTmpGraphicDrag
OST_OBSOLETE_FabricationPartsTmpGraphicDrop
OST_FabricationPartsTmpGraphicEnd
OST_FabricationDuctworkInsulation 断熱材
OST_LayoutNodes
OST_FabricationDuctworkCenterLine 中心線
OST_FabricationServiceElements
OST_FabricationDuctworkTags MEP 製造用ダクト部品タグ
OST_FabricationDuctwork MEP 製造用ダクト部品
OST_LayoutPathBase_Pipings
OST_NumberingSchemas
OST_DivisionRules
OST_gbXML_Shade シェーディング
OST_AnalyticSurfaces 解析サーフェス
OST_AnalyticSpaces 解析スペース
OST_gbXML_OpeningAir 空気孔
OST_gbXML_NonSlidingDoor 引き戸でないドア
OST_gbXML_SlidingDoor 引き戸
OST_gbXML_OperableSkylight 可動式天窓
OST_gbXML_FixedSkylight FIX 天窓
OST_gbXML_OperableWindow 可動式窓
OST_gbXML_FixedWindow FIX 窓
OST_gbXML_UndergroundCeiling 地下天井
OST_gbXML_UndergroundSlab 地下スラブ
OST_gbXML_UndergroundWall 地下壁
OST_gbXML_SurfaceAir 空気面
OST_gbXML_Ceiling 天井
OST_gbXML_InteriorFloor 室内床
OST_gbXML_InteriorWall 内壁
OST_gbXML_SlabOnGrade ベタ基礎
OST_gbXML_RaisedFloor 上げ床
OST_gbXML_Roof 屋根
OST_gbXML_ExteriorWall 外壁
OST_DivisionProfile
OST_SplitterProfile
OST_PipeSegments 配管セグメント
OST_GraphicalWarning_OpenConnector
OST_PlaceHolderPipes 配管ルート
OST_PlaceHolderDucts ダクト ルート
OST_PipingSystem_Reference_Visibility 参照線
OST_PipingSystem_Reference
OST_DuctSystem_Reference_Visibility 参照線
OST_DuctSystem_Reference
OST_PipeInsulationsTags 配管断熱材タグ
OST_DuctLiningsTags ダクト ライニング タグ
OST_DuctInsulationsTags ダクト断熱材タグ
OST_ElectricalInternalCircuits スペア / スペースの電気回路
OST_PanelScheduleGraphics パネル集計表グラフィックス
OST_CableTrayRun ケーブル ラック経路
OST_ConduitRun 電線管経路
OST_ParamElemElectricalLoadClassification
OST_DataPanelScheduleTemplates
OST_SwitchboardScheduleTemplates
OST_BranchPanelScheduleTemplates
OST_ConduitStandards
OST_ElectricalLoadClassifications
OST_ElectricalDemandFactorDefinitions
OST_ConduitFittingCenterLine 中心線
OST_CableTrayFittingCenterLine 中心線
OST_ConduitCenterLine 中心線
OST_ConduitDrop 立下り
OST_ConduitRiseDrop 立上り
OST_CableTrayCenterLine 中心線
OST_CableTrayDrop 立下り
OST_CableTrayRiseDrop 立上り
OST_ConduitTags 電線管タグ
OST_Conduit 電線管
OST_CableTrayTags ケーブル ラック タグ
OST_CableTray ケーブル ラック
OST_ConduitFittingTags 電線管継手タグ
OST_ConduitFitting 電線管継手
OST_CableTrayFittingTags ケーブル ラック継手タグ
OST_CableTrayFitting ケーブル ラック継手
OST_RoutingPreferences 推奨経路設定
OST_DuctLinings ダクト ライニング
OST_DuctInsulations ダクト断熱材
OST_PipeInsulations パイプ断熱材
OST_HVAC_Load_Schedules
OST_HVAC_Load_Building_Types
OST_HVAC_Load_Space_Types
OST_HVAC_Zones_Reference_Visibility 参照線
OST_HVAC_Zones_InteriorFill_Visibility パターン塗り潰し
OST_HVAC_Zones_ColorFill 色塗り潰し
OST_ZoneTags ゾーン タグ
OST_LayoutPath_Bases
OST_WireTemperatureRatings
OST_WireInsulations
OST_WireMaterials
OST_HVAC_Zones_Reference
OST_HVAC_Zones_InteriorFill
OST_HVAC_Zones_Boundary 境界
OST_HVAC_Zones HVAC ゾーン
OST_Fluids
OST_PipeSchedules
OST_PipeMaterials
OST_PipeConnections
OST_EAConstructions
OST_SwitchSystem スイッチ システム
OST_SprinklerTags スプリンクラ タグ
OST_Sprinklers スプリンクラ
OST_RouteCurveBranch
OST_RouteCurveMain
OST_RouteCurve
OST_GbXML_Opening 開口部
OST_GbXML_SType_Underground 地下
OST_GbXML_SType_Shade シェーディング
OST_GbXML_SType_Exterior 外壁
OST_GbXML_SType_Interior 内壁
OST_GbXMLFaces 解析サーフェス
OST_WireHomeRunArrows 幹線矢印
OST_LightingDeviceTags 照明機器タグ
OST_LightingDevices 照明機器
OST_FireAlarmDeviceTags 火災報知機器タグ
OST_FireAlarmDevices 火災報知機器
OST_DataDeviceTags データ機器タグ
OST_DataDevices データ機器
OST_CommunicationDeviceTags 通信機器タグ
OST_CommunicationDevices 通信機器
OST_SecurityDeviceTags 警備機器タグ
OST_SecurityDevices 警備機器
OST_NurseCallDeviceTags ナース コール機器タグ
OST_NurseCallDevices ナース コール機器
OST_TelephoneDeviceTags 電話機器タグ
OST_TelephoneDevices 電話機器
OST_WireTickMarks 配線チェック マーク
OST_PipeFittingInsulation
OST_PipeFittingCenterLine 中心線
OST_FlexPipeCurvesInsulation
OST_PipeCurvesInsulation
OST_PipeCurvesDrop 立下り
OST_DuctFittingLining
OST_DuctFittingInsulation
OST_DuctFittingCenterLine 中心線
OST_FlexDuctCurvesInsulation
OST_DuctCurvesLining
OST_DuctCurvesInsulation
OST_DuctCurvesDrop 立下り
OST_DuctFittingTags ダクト継手タグ
OST_PipeFittingTags 配管継手タグ
OST_PipeColorFills 配管の色の塗り潰し
OST_PipeColorFillLegends 配管カラー凡例
OST_WireTags 配線タグ
OST_PipeAccessoryTags 配管付属品タグ
OST_PipeAccessory 配管付属品
OST_PipeCurvesRiseDrop 立上り
OST_FlexPipeCurvesPattern パターン
OST_FlexPipeCurvesContour
OST_FlexPipeCurvesCenterLine 中心線
OST_FlexPipeCurves フレキシブル配管
OST_PipeFitting 配管継手
OST_FlexPipeTags フレキシブル配管タグ
OST_PipeTags 配管タグ
OST_PipeCurvesContour
OST_PipeCurvesCenterLine 中心線
OST_PipeCurves 配管
OST_PipingSystem 配管システム
OST_ElectricalDemandFactor
OST_ElecDistributionSys
OST_ElectricalVoltage
OST_Wire 配線
OST_ElectricalCircuitTags
OST_ElectricalCircuit 電気回路
OST_DuctCurvesRiseDrop 立上り
OST_FlexDuctCurvesPattern パターン
OST_FlexDuctCurvesContour
OST_FlexDuctCurvesCenterLine 中心線
OST_FlexDuctCurves フレキシブル ダクト
OST_DuctAccessoryTags ダクト付属品タグ
OST_DuctAccessory ダクト付属品
OST_DuctSystem ダクト システム
OST_DuctTerminalTags 制気口タグ
OST_DuctTerminal 制気口
OST_DuctFitting ダクト継手
OST_DuctColorFills ダクトの色の塗り潰し
OST_FlexDuctTags フレキシブル ダクト タグ
OST_DuctTags ダクト タグ
OST_DuctCurvesContour
OST_DuctCurvesCenterLine 中心線
OST_DuctCurves ダクト
OST_DuctColorFillLegends ダクト カラー凡例
OST_ConnectorElemZAxis
OST_ConnectorElemYAxis
OST_ConnectorElemXAxis
OST_ConnectorElem
OST_BridgeBearingTags
OST_BridgeGirderTags
OST_BridgeFoundationTags
OST_BridgeDeckTags
OST_BridgeArchTags
OST_BridgeCableTags
OST_BridgeTowerTags
OST_BridgePierTags
OST_BridgeAbutmentTags
OST_BridgeBearingHiddenLines
OST_BridgeGirderHiddenLines
OST_BridgeFoundationHiddenLines
OST_BridgeDeckHiddenLines
OST_BridgeArchHiddenLines
OST_BridgeCableHiddenLines
OST_BridgeTowerHiddenLines
OST_BridgePierHiddenLines
OST_BridgeAbutmentHiddenLines
OST_BridgeBearings 橋梁支承
OST_BridgeGirders 橋桁
OST_BridgeFoundations 橋基礎
OST_BridgeDecks 橋床版
OST_BridgeArches 橋梁アーチ
OST_BridgeCables 橋梁ケーブル
OST_BridgeTowers 橋塔
OST_BridgePiers 橋脚
OST_BridgeAbutments 橋台
OST_DesignOptions
OST_DesignOptionSets
OST_StructuralBracePlanReps 平面図ビュー内のブレース記号
OST_StructConnectionSymbols 接合記号
OST_StructuralAnnotations 構造の注釈
OST_RevisionCloudTags 改訂雲マーク タグ
OST_Revisions
OST_RevisionClouds 改訂雲マーク
OST_EditCutProfile
OST_ElevationMarks 立面記号
OST_GridHeads 通芯記号
OST_LevelHeads レベル記号
OST_DecalType
OST_DecalElement
OST_VolumeOfInterest スコープ ボックス
OST_BoundaryConditions 境界条件
OST_InternalAreaLoadTags 内部面荷重タグ
OST_InternalLineLoadTags 内部線荷重タグ
OST_InternalPointLoadTags 内部点荷重タグ
OST_AreaLoadTags 面荷重タグ
OST_LineLoadTags 線荷重タグ
OST_PointLoadTags 点荷重タグ
OST_LoadCasesSeismic 地震荷重
OST_LoadCasesTemperature 熱負荷
OST_LoadCasesAccidental 偶発荷重
OST_LoadCasesRoofLive 屋根の積載荷重
OST_LoadCasesSnow 積雪荷重
OST_LoadCasesWind 風荷重
OST_LoadCasesLive 積載荷重
OST_LoadCasesDead 固定荷重
OST_LoadCases 構造荷重ケース
OST_InternalAreaLoads 内部面荷重
OST_InternalLineLoads 内部線荷重
OST_InternalPointLoads 内部点荷重
OST_InternalLoads 構造内部荷重
OST_AreaLoads 面荷重
OST_LineLoads 線荷重
OST_PointLoads 点荷重
OST_Loads 構造荷重
OST_BeamSystemTags 構造梁システム タグ
OST_FootingSpanDirectionSymbol 基礎スパン方向記号
OST_SpanDirectionSymbol スパン方向記号
OST_SpotSlopesSymbols
OST_SpotCoordinateSymbols
OST_SpotElevSymbols 指定点高さ記号
OST_StructuralConnectionHandlerTags_Deprecated
OST_TrussTags 構造トラス タグ
OST_KeynoteTags キーノート タグ
OST_DetailComponentTags 詳細項目タグ
OST_MaterialTags マテリアル タグ
OST_FloorTags 床タグ
OST_CurtaSystemTags カーテン システム タグ
OST_HostFinTags
OST_StairsTags 階段タグ
OST_MultiCategoryTags マルチカテゴリ タグ
OST_PlantingTags 植栽タグ
OST_AreaTags エリア タグ
OST_StructuralFoundationTags 構造基礎タグ
OST_StructuralColumnTags 構造柱タグ
OST_ParkingTags 駐車場タグ
OST_SiteTags 外構タグ
OST_StructuralFramingTags 構造フレーム タグ
OST_SpecialityEquipmentTags 特殊部品タグ
OST_GenericModelTags 一般モデル タグ
OST_CurtainWallPanelTags カーテン パネル タグ
OST_WallTags 壁タグ
OST_PlumbingFixtureTags 衛生器具タグ
OST_MechanicalEquipmentTags 機械設備タグ
OST_LightingFixtureTags 照明器具タグ
OST_FurnitureSystemTags 家具システム タグ
OST_FurnitureTags 家具タグ
OST_ElectricalFixtureTags 電気器具タグ
OST_ElectricalEquipmentTags 電気設備タグ
OST_CeilingTags 天井タグ
OST_CaseworkTags 造作工事タグ
OST_Tags
OST_MEPSpaceColorFill 色塗り潰し
OST_MEPSpaceReference
OST_MEPSpaceInteriorFill
OST_MEPSpaceReferenceVisibility 参照
OST_MEPSpaceInteriorFillVisibility 内部
OST_MEPSpaces スペース
OST_StackedWalls
OST_MassGlazingAll
OST_MassFloorsAll
OST_MassWallsAll
OST_MassExteriorWallUnderground
OST_MassSlab
OST_MassShade マス シェーディング
OST_MassOpening マス開口部
OST_MassSkylights マス天窓
OST_MassGlazing マス グレージング
OST_MassRoof マス屋根
OST_MassExteriorWall マス外壁
OST_MassInteriorWall マス内壁
OST_MassZone マス ゾーン
OST_MassAreaFaceTags マス床タグ
OST_HostTemplate
OST_MassFaceSplitter
OST_MassCutter
OST_ZoningEnvelope
OST_MassTags マス タグ
OST_MassForm フォーム
OST_MassFloor マス床
OST_Mass マス
OST_DividedSurface_DiscardedDivisionLines
OST_DividedSurfaceBelt
OST_TilePatterns
OST_AlwaysExcludedInAllViews
OST_DividedSurface_TransparentFace
OST_DividedSurface_PreDividedSurface
OST_DividedSurface_PatternFill パターン塗り潰し
OST_DividedSurface_PatternLines パターン線
OST_DividedSurface_Gridlines グリッドライン
OST_DividedSurface_Nodes ノード
OST_DividedSurface
OST_RepeatingDetailLines
OST_RampsDownArrow DN 矢印
OST_RampsUpArrow UP 矢印
OST_RampsDownText DN 文字
OST_RampsUpText UP 文字
OST_RampsStringerAboveCut <上部>側桁
OST_RampsStringer 側桁
OST_RampsAboveCut '<上部>'スロープ
OST_RampsIncomplete
OST_TrussDummy
OST_ZoneSchemes
OST_AreaSchemes
OST_Areas エリア
OST_ProjectInformation プロジェクト情報
OST_Sheets シート
OST_ProfileFamilies
OST_DetailComponents 詳細項目
OST_RoofSoffit 軒裏壁
OST_EdgeSlab スラブ ハンチ
OST_Gutter
OST_Fascia 鼻隠し
OST_Entourage 点景
OST_Planting 植栽
OST_Blocks
OST_StructuralStiffenerHiddenLines 隠線
OST_StructuralColumnLocationLine 配置基準線
OST_StructuralFramingLocationLine 配置基準線
OST_StructuralStiffenerTags 構造スチフナ タグ
OST_StructuralStiffener 構造スチフナ材
OST_FootingAnalyticalGeometry
OST_RvtLinks RVT リンク
OST_Automatic
OST_SpecialityEquipment 特殊部品
OST_ColumnAnalyticalRigidLinks 固定リンク
OST_SecondaryTopographyContours サブ等高線
OST_TopographyContours メイン等高線
OST_TopographySurface 三角形分割エッジ
OST_Topography 地盤面
OST_TopographyLink 地盤面リンク
OST_StructuralTruss 構造トラス
OST_StructuralColumnStickSymbols スティック記号
OST_HiddenStructuralColumnLines 隠線
OST_AnalyticalRigidLinks 固定リンク
OST_ColumnAnalyticalGeometry
OST_FramingAnalyticalGeometry
OST_StructuralColumns 構造柱
OST_HiddenStructuralFramingLines 隠線
OST_KickerBracing キッカー ブレース
OST_StructuralFramingSystem 構造梁システム
OST_VerticalBracing 鉛直ブレース
OST_HorizontalBracing 水平ブレース
OST_Purlin つなぎ梁
OST_Joist 小梁
OST_Girder 大梁
OST_StructuralFramingOther その他
OST_StructuralFraming 構造フレーム
OST_HiddenStructuralFoundationLines 隠線
OST_StructuralFoundation 構造基礎
OST_BasePointAxisZ
OST_BasePointAxisY
OST_BasePointAxisX
OST_SharedBasePoint 測量点
OST_ProjectBasePoint プロジェクト基準点
OST_SiteRegion
OST_SitePropertyLineSegmentTags 敷地境界線セグメント タグ
OST_SitePropertyLineSegment 敷地境界線セグメント
OST_SitePropertyTags プロパティ タグ
OST_SitePointBoundary 境界点
OST_SiteProperty 敷地境界線
OST_BuildingPad 舗装
OST_SitePoint 内部点
OST_SiteSurface
OST_Site 外構
OST_Sewer
OST_Roads 道路
OST_Property
OST_Parking 駐車場
OST_PlumbingFixtures 衛生器具
OST_MechanicalEquipment 機械設備
OST_LightingFixtureSource 光源
OST_LightingFixtures 照明器具
OST_FurnitureSystems 家具システム
OST_ElectricalFixtures 電気器具
OST_ElectricalEquipment 電気設備
OST_Casework 造作工事
OST_ArcWallRectOpening
OST_DormerOpeningIncomplete
OST_SWallRectOpening
OST_ShaftOpening シャフト開口部
OST_StructuralFramingOpening
OST_ColumnOpening
OST_RiseDropSymbols
OST_PipeHydronicSeparationSymbols 油圧分離記号
OST_MechanicalEquipmentSetBoundaryLines 機械設備セットの境界線
OST_MechanicalEquipmentSetTags 機械設備セット タグ
OST_MechanicalEquipmentSet 機械設備セット
OST_AnalyticalPipeConnectionLineSymbol 接続線の記号
OST_AnalyticalPipeConnections 解析用配管接続
OST_Coordination_Model コーディネーション モデル
OST_MultistoryStairs
OST_HiddenStructuralConnectionLines_Deprecated
OST_StructuralConnectionHandler_Deprecated
OST_CoordinateSystem
OST_FndSlabLocalCoordSys ローカル座標系
OST_FloorLocalCoordSys ローカル座標系
OST_WallLocalCoordSys ローカル座標系
OST_BraceLocalCoordSys ローカル座標系
OST_ColumnLocalCoordSys ローカル座標系
OST_BeamLocalCoordSys ローカル座標系
OST_MultiReferenceAnnotations 複数鉄筋の注釈
OST_DSR_LeaderTickMarkStyleId
OST_DSR_InteriorTickMarkStyleId
OST_DSR_ArrowHeadStyleId
OST_DSR_CenterlineTickMarkStyleId
OST_DSR_CenterlinePatternCatId
OST_DSR_DimStyleHeavyEndCategoryId
OST_DSR_DimStyleHeavyEndCatId
OST_DSR_DimStyleTickCategoryId
OST_DSR_LineAndTextAttrFontId
OST_DSR_LineAndTextAttrCategoryId
OST_NodeAnalyticalTags 解析用ノード タグ
OST_LinkAnalyticalTags 解析用リンク タグ
OST_RailingRailPathExtensionLines
OST_RailingRailPathLines
OST_StairsSupports 側桁
OST_RailingHandRailAboveCut <上部> 補助手摺
OST_RailingTopRailAboveCut <上部> 笠木手摺
OST_RailingTermination 端部
OST_RailingSupport 支柱
OST_RailingHandRail 補助手摺
OST_RailingTopRail 笠木手摺
OST_StairsSketchPathLines
OST_StairsTriserNumbers 階段踏面/蹴上番号
OST_StairsTriserTags
OST_StairsSupportTags 階段側桁タグ
OST_StairsLandingTags 階段踊場タグ
OST_StairsRunTags 階段経路のタグ
OST_StairsPathsAboveCut <上部> UP 矢印
OST_StairsPaths 階段パス
OST_StairsRiserLinesAboveCut <上部> 蹴上線
OST_StairsRiserLines 蹴上げ線
OST_StairsOutlinesAboveCut <上部> 外形
OST_StairsOutlines 外枠
OST_StairsNosingLinesAboveCut <上部> 段鼻線
OST_StairsNosingLines 段鼻線
OST_StairsCutMarksAboveCut <上部> 切断線
OST_StairsCutMarks 切断線
OST_ComponentRepeaterSlot
OST_ComponentRepeater
OST_DividedPath
OST_IOSRoomCalculationPoint
OST_PropertySet
OST_AppearanceAsset
OST_StairStringer2012_Deprecated
OST_StairsTrisers 踏み面/蹴上げ
OST_StairsLandings 踊り場
OST_StairsRuns 階段経路
OST_Stair2012_Deprecated
OST_RailingSystemTags
OST_RailingSystemTransition
OST_RailingSystemTermination
OST_RailingSystemRail
OST_RailingSystemTopRail
OST_RailingSystemHandRailBracket
OST_RailingSystemHandRail
OST_RailingSystemHardware
OST_RailingSystemPanel
OST_RailingSystemBaluster
OST_RailingSystemPost
OST_RailingSystemSegment
OST_RailingSystem
OST_AdaptivePoints_HiddenLines
OST_AdaptivePoints_Lines 線分
OST_AdaptivePoints_Planes
OST_AdaptivePoints_Points
OST_AdaptivePoints アダプティブ ポイント
OST_CeilingOpening
OST_FloorOpening
OST_RoofOpening
OST_WallRefPlanes
OST_StructLocationLineControl
OST_DimLockControlLeader
OST_MEPSpaceSeparationLines <スペースの分割>
OST_AreaPolylines
OST_RoomPolylines
OST_InstanceDrivenLineStyle
OST_RemovedGridSeg
OST_IOSOpening
OST_IOSTilePatternGrid
OST_ControlLocal
OST_ControlAxisZ
OST_ControlAxisY
OST_ControlAxisX
OST_XRayConstrainedProfileEdge
OST_XRayImplicitPathCurve
OST_XRayPathPoint
OST_XRayPathCurve
OST_XRaySideEdge
OST_XRayProfileEdge
OST_ReferencePoints_HiddenLines
OST_ReferencePoints_Lines 線分
OST_ReferencePoints_Planes
OST_ReferencePoints_Points
OST_ReferencePoints 参照点
OST_Materials マテリアル
OST_CeilingsCutPattern 切断面パターン
OST_CeilingsDefault 共有エッジ
OST_CeilingsFinish2 仕上げ 2 [ 5 ]
OST_CeilingsFinish1 仕上げ 1 [ 4 ]
OST_CeilingsSubstrate 下地 [ 2 ]
OST_CeilingsInsulation 断熱層 / 通気層
OST_CeilingsStructure 構造 [ 1 ]
OST_CeilingsMembrane 複式層
OST_FloorsInteriorEdges 内部エッジ
OST_FloorsCutPattern 切断面パターン
OST_HiddenFloorLines 隠線
OST_FloorsDefault 共有エッジ
OST_FloorsFinish2 仕上げ 2 [ 5 ]
OST_FloorsFinish1 仕上げ 1 [ 4 ]
OST_FloorsSubstrate 下地 [ 2 ]
OST_FloorsInsulation 断熱層 / 通気層
OST_FloorsStructure 構造 [ 1 ]
OST_FloorsMembrane 複式層
OST_RoofsInteriorEdges 内部エッジ
OST_RoofsCutPattern 切断面パターン
OST_RoofsDefault 共有エッジ
OST_RoofsFinish2 仕上げ 2 [ 5 ]
OST_RoofsFinish1 仕上げ 1 [ 4 ]
OST_RoofsSubstrate 下地 [ 2 ]
OST_RoofsInsulation 断熱層 / 通気層
OST_RoofsStructure 構造 [ 1 ]
OST_RoofsMembrane 複式層
OST_WallsCutPattern 切断面パターン
OST_HiddenWallLines 隠線
OST_WallsDefault 共有エッジ
OST_WallsFinish2 仕上げ 2 [ 5 ]
OST_WallsFinish1 仕上げ 1 [ 4 ]
OST_WallsSubstrate 下地 [ 2 ]
OST_WallsInsulation 断熱層 / 通気層
OST_WallsStructure 構造 [ 1 ]
OST_WallsMembrane 複式層
OST_PreviewLegendComponents
OST_LegendComponents
OST_Schedules 集計
OST_ScheduleGraphics 集計表のグラフィックス
OST_RasterImages ラスター イメージ
OST_ColorFillSchema
OST_RoomColorFill 色塗り潰し
OST_ColorFillLegends カラー凡例
OST_AnnotationCropSpecial 注釈トリミング境界
OST_CropBoundarySpecial トリミング境界
OST_AnnotationCrop 注釈トリミング境界
OST_FloorsAnalyticalGeometry
OST_WallsAnalyticalGeometry
OST_CalloutLeaderLine 部分詳細引出線
OST_CeilingsSurfacePattern サーフェス パターン
OST_RoofsSurfacePattern サーフェス パターン
OST_FloorsSurfacePattern サーフェス パターン
OST_WallsSurfacePattern サーフェス パターン
OST_CalloutBoundary 部分詳細境界
OST_CalloutHeads 部分詳細記号
OST_Callouts 吹き出し
OST_CropBoundary トリミング境界
OST_Elev 立面図
OST_AxisZ
OST_AxisY
OST_AxisX
OST_CLines 参照面
OST_Lights
OST_ViewportLabel ビュー タイトル
OST_Viewports ビューポート
OST_Camera_Lines カメラ
OST_Cameras
OST_MEPSpaceTags スペース タグ
OST_RoomTags 部屋タグ
OST_DoorTags ドア タグ
OST_WindowTags 窓タグ
OST_SectionHeadWideLines 太線
OST_SectionHeadMediumLines 中線
OST_SectionHeadThinLines 細線
OST_SectionHeads 断面記号
OST_ContourLabels 等高線ラベル
OST_CurtaSystemFaceManager
OST_CurtaSystem カーテン システム
OST_AreaReport_Arc_Minus
OST_AreaReport_Arc_Plus
OST_AreaReport_Boundary
OST_AreaReport_Triangle
OST_CurtainGridsCurtaSystem カーテン システム グリッド
OST_CurtainGridsSystem
OST_CurtainGridsWall カーテンウォール グリッド
OST_CurtainGridsRoof カーテン ルーフ グリッド
OST_HostFinHF
OST_HostFinWall
OST_HostFinCeiling
OST_HostFinRoof
OST_HostFinFloor
OST_HostFin
OST_AnalysisDisplayStyle 解析表示スタイル
OST_AnalysisResults 解析結果
OST_RenderRegions レンダリング領域
OST_SectionBox 切断ボックス
OST_TextNotes 文字注記
OST_Divisions
OST_Catalogs
OST_DirectionEdgeLines
OST_CenterLines <中心線>
OST_LinesBeyond <背景>
OST_HiddenLines <隠線>
OST_DemolishedLines <解体>
OST_OverheadLines <オーバーヘッド>
OST_TitleBlockWideLines 太線
OST_TitleBlockMediumLines 中線
OST_TitleBlockThinLines 細線
OST_TitleBlocks 図面枠
OST_Views ビュー
OST_Viewers
OST_PartHiddenLines 隠線
OST_PartTags パーツ タグ
OST_Parts パーツ
OST_AssemblyTags アセンブリ タグ
OST_Assemblies アセンブリ
OST_RoofTags 屋根タグ
OST_SpotSlopes 指定点勾配
OST_SpotCoordinates 指定点座標
OST_SpotElevations 指定点高さ
OST_Constraints
OST_WeakDims 自動スケッチ寸法
OST_Dimensions 寸法
OST_Levels レベル線
OST_DisplacementPath 変位パス
OST_DisplacementElements
OST_GridChains 複数セグメントからなる通芯
OST_Grids 通芯
OST_BrokenSectionLine 分割線
OST_SectionLine 切断線
OST_Sections 断面図
OST_ReferenceViewer ビュー参照
OST_ReferenceViewerSymbol ビュー参照
OST_ImportObjectStyles ファミリへの読み込み
OST_ModelText
OST_MaskingRegion マスキング領域
OST_Matchline 分割線
OST_FaceSplitter
OST_PlanRegion 部分切断領域
OST_FilledRegion 塗り潰し領域
OST_MassingProjectionOutlines
OST_MassingCutOutlines
OST_Massing
OST_Reveals
OST_Cornices 壁の造作材
OST_Ramps スロープ
OST_RailingBalusterRailCut
OST_RailingBalusterRail
OST_Railings
OST_CurtainGrids カーテン グリッド
OST_CurtainWallMullionsCut
OST_CurtainWallMullions カーテン マリオン
OST_CurtainWallPanels カーテン パネル
OST_AreaReference
OST_AreaInteriorFill
OST_RoomReference
OST_RoomInteriorFill
OST_AreaColorFill 色塗り潰し
OST_AreaReferenceVisibility 参照
OST_AreaInteriorFillVisibility パターン塗り潰し
OST_RoomReferenceVisibility 参照
OST_RoomInteriorFillVisibility パターン塗り潰し
OST_Rooms 部屋
OST_GenericModel 一般モデル
OST_GenericAnnotation 一般注釈
OST_Fixtures
OST_StairsRailingTags 手摺タグ
OST_StairsRailingAboveCut <上部> 切断線
OST_StairsDownArrows DN 矢印
OST_StairsUpArrows UP 矢印
OST_StairsDownText DN 文字
OST_StairsRailingRail 手摺横桟
OST_StairsRailingBaluster 手摺子
OST_StairsRailing 手摺
OST_StairsUpText UP 文字
OST_StairsSupportsAboveCut <上部> 側桁
OST_StairsStringerCarriage 側桁
OST_StairsAboveCut_ToBeDeprecated
OST_StairsIncomplete_Deprecated
OST_Stairs 階段
OST_IOSNavWheelPivotBall
OST_IOSRoomComputationHeight
OST_IOSRoomUpperLowerLines
OST_IOSDragBoxInverted
OST_IOSDragBox
OST_Phases
OST_IOS_GeoSite
OST_IOS_GeoLocations
OST_IOSFabricReinSpanSymbolCtrl
OST_GuideGrid ガイド グリッド
OST_EPS_Future
OST_EPS_Temporary
OST_EPS_New
OST_EPS_Demolished
OST_EPS_Existing
OST_IOSMeasureLineScreenSize
OST_Columns
OST_IOSRebarSystemSpanSymbolCtrl
OST_IOSRoomTagToRoomLines
OST_IOSAttachedDetailGroups
OST_IOSDetailGroups
OST_IOSModelGroups モデル グループ
OST_IOSSuspendedSketch
OST_IOSWallCoreBoundary
OST_IOSMeasureLine
OST_IOSArrays
OST_Curtain_Systems
OST_IOSBBoxScreenSize
OST_IOSSlabShapeEditorPointInterior
OST_IOSSlabShapeEditorPointBoundary
OST_IOSSlabShapeEditorBoundary
OST_IOSSlabShapeEditorAutoCrease
OST_IOSSlabShapeEditorExplitCrease
OST_ReferenceLines 参照線
OST_IOSNotSilhouette
OST_FillPatterns
OST_Furniture 家具
OST_AreaSchemeLines <エリア境界>
OST_GenericLines 線分
OST_InsulationLines 断熱層ライン
OST_CloudLines
OST_IOSRoomPerimeterLines
OST_IOSCuttingGeometry
OST_IOSCrashGraphics
OST_IOSGroups
OST_IOSGhost
OST_StairsSketchLandingCenterLines
OST_StairsSketchRunLines
OST_StairsSketchRiserLines
OST_StairsSketchBoundaryLines
OST_RoomSeparationLines <部屋を分割>
OST_AxisOfRotation 回転の軸
OST_InvisibleLines
OST_IOSThinPixel_DashDot
OST_IOSThinPixel_Dash
OST_IOSThinPixel_Dot
OST_Extrusions
OST_IOS
OST_CutOutlines
OST_IOSThinPixel
OST_IOSFlipControl
OST_IOSSketchGrid
OST_IOSSuspendedSketch_obsolete
OST_IOSFreeSnapLine
OST_IOSDatumPlane
OST_Lines 線分
OST_IOSConstructionLine
OST_IOSAlignmentGraphics
OST_IOSAligningLine
OST_IOSBackedUpElements
OST_IOSRegeneratedElements
OST_SketchLines <スケッチ>
OST_CurvesWideLines 太線
OST_CurvesMediumLines 中線
OST_CurvesThinLines 細線
OST_Curves
OST_CeilingsProjection
OST_CeilingsCut
OST_Ceilings 天井
OST_RoofsProjection
OST_RoofsCut
OST_Roofs 屋根
OST_FloorsProjection
OST_FloorsCut
OST_Floors
OST_DoorsGlassProjection ガラス
OST_DoorsGlassCut
OST_DoorsFrameMullionProjection フレーム/マリオン
OST_DoorsFrameMullionCut
OST_DoorsOpeningProjection 開口部
OST_DoorsOpeningCut
OST_DoorsPanelProjection パネル
OST_DoorsPanelCut
OST_Doors ドア
OST_WindowsOpeningProjection 開口部
OST_WindowsOpeningCut
OST_WindowsSillHeadProjection 下枠/上枠
OST_WindowsSillHeadCut
OST_WindowsFrameMullionProjection フレーム/マリオン
OST_WindowsFrameMullionCut
OST_WindowsGlassProjection ガラス
OST_WindowsGlassCut
OST_Windows
OST_WallsProjectionOutlines
OST_WallsCutOutlines
OST_Walls
OST_IOSRegenerationFailure
OST_ScheduleViewParamGroup
OST_MatchSiteComponent
OST_MatchProfile
OST_MatchDetail
OST_MatchAnnotation
OST_MatchModel
OST_MatchAll
INVALID

BuiltInCategory日本語名取得:まとめ

BuiltInCategoryを一覧で取得するとかなりの数になりましたね。

参考になれば幸いです。

RevitAPI独学用教材

最後に教材等を紹介します。

RevitAPIを理解してプログラムを作れるようになるには、C#の知識が必要です。

下記、オススメの参考書です。

プログラムが初心者にオススメのC#教材

イラストでの解説が分かりやすく、初めてのプログラミング学習にピッタリです。

プログラムの基礎知識がある人にオススメのC#教材

少し踏み込んだ内容まで学習でき、C#の知識が深まります。

美しいコードを書きたい人はこちら

個人的には、プログラマーひとり一冊は持っておくべきと思っている名作です^^
スポンサーリンク



Revitアドイン作ります

のんびり学習してる余裕などない!という方にご案内です。

ランサーズにてRevitのアドイン作成を承っております!

スキル、資格等の詳細はプロフィールをご覧ください。

ご質問などもお気軽にメッセージしていただければと思います。

詳しくは下の記事にまとめています。

【開発依頼】あなただけのRevitアドインを真心込めて作ります!RevitAPIを使ったアドイン開発を承ります。1から学習してアドイン作る余裕がない、外注でアドイン作成を依頼したい、という方はご利用をご検討いただければと思います^^...

最後まで読んでいただき、ありがとうございました^^

以上です。