「Bim:list-properties」の版間の差分
(ページの作成:「{{BCAD_LISP_BIM}} ; 構文 : (Bim:list-properties ''ename'' ) ; 機能 : 指定されたエンティティが BIM Element に分類される場合、そのエンティ…」) |
編集の要約なし |
||
10行目: | 10行目: | ||
; 引数 | ; 引数 | ||
:* ename : | :* ename : BIMプロパティを取得したいエンティティ(ename or VLAオブジェクト) | ||
2023年3月13日 (月) 05:12時点における最新版
BricsCAD LISP BIM関数 Home - BricsCAD LISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (Bim:list-properties ename )
- 機能
- 指定されたエンティティが BIM Element に分類される場合、そのエンティティで利用可能なすべてのプロパティ(文字列のリスト)のリストを返す。
- 引数
-
- ename : BIMプロパティを取得したいエンティティ(ename or VLAオブジェクト)
- 戻り値
- そのエンティティで利用可能なすべての BIM プロパティ(文字列のリスト)のリスト
- メモ
- (bim:list-propertiesmap), (bim:get-property), (bim:set-bimtype), (bim::set-assigned-building) および (bim::set-assigned-story) を参照。
- すべてのプロパティ名は常に大文字と小文字が区別される。
- サンプル
(vl-load-bim) (bim:set-bimtype ent "Slab") T (bim:list-properties ent) ("AcousticRating" "AffectsSurroundings" "ArticleNumber" "AverageSolarTransmittance" "AverageVisibleTransmittance" "Azimuth" "BarCode" "BatchReference" "Blue" "CategoryProduct" "ColorShading" "Colour" "Combustible" "Compartmentation" "Composition" "ConcreteCoverAtLinks" "ConcreteCoverAtMainBars" "ConstructionToleranceClass" "ConstructionType" "CornerChamfer" "DemandImportanceValue" "DemandThresholdValue" "DemandValue" "Description" "DescriptionPitchOfSlab" "DimensionalAccuracyClass" "ElementGrossVolume" "ElementNetVolume" "ElementWeight" "EnvironmentalClass" "Exclusions" "FireRating" "FireRatingConcrete" "FireResistanceRatingProperties" "FormStrippingStrength" "GUID" "GapValue" "GapValueWeighted" "Green" "GrossFootprintArea" "GrossVolume" "GrossVolume" "GroupName" "HollowCorePlugging" "Inclination" "InitialTension" "InstancePropertySets" "IsCombustible" "IsExtendedWarranty" "IsExternal" "LayerName" "LifeCycleEnvironmentalLoad" "LiftingStrength" "LoadBearing" "LoadBearingDirectionU" "LoadBearingDirectionV" "LocalContext" "LongInsideCenterLowerBarPitch" "LongInsideCenterTopBarPitch" "LongInsideEndLowerBarPitch" "LongInsideEndTopBarPitch" "LongOutsideLowerBarPitch" "LongOutsideTopBarPitch" "Manufacturer" "ManufacturingToleranceClass" "MeanTimeBetweenFailure" "MinimumAllowableSupportLength" "ModelLabel" "ModelReference" "Name" "NatureOfRisk" "NetFootprintArea" "NetVolume" "NetVolume" "NominalWidth" "Perimeter" "Perimeter" "PitchAngle" "PlateSlabGrossArea" "PlateSlabNetArea" "ProductRequirementsName" "ProductionLotId" "ProductionYear" "Red" "Reference" "ReferenceQuantity" "ReferenceReinforcementBarPitchSlab" "Reflectance" "ReleaseStrength" "RiskCause" "RoomBounding" "Roughness" "SequenceNumber" "SerialNumberConcrete" "SerialNumberManufacturer" "ServiceLife" "ShortInsideCenterLowerBarPitch" "ShortInsideCenterTopBarPitch" "ShortInsideEndLowerBarPitch" "ShortInsideEndTopBarPitch" "ShortOutsideLowerBarPitch" "ShortOutsideTopBarPitch" "SlabLength" "SlabType" "SlabWidth" "SpatialLocation" "SpecialInstructions" "StructuralClass" "SubNatureOfRisk1" "SubNatureOfRisk2" "SupplyEvaluationValue" "SupportDuringTransportDescription" "SurfaceSpreadOfFlame" "SurfaceSpreadOfFlameFireRatingProperties" "TendonRelaxation" "ThermalTransmittance" "Thickness" "TotalConcreteQuantity" "TransportationStrength" "TypeDesignator" "WarrantyContent" "WarrantyIdentifier" "WarrantyPeriod")
関連事項