Bim:list-properties
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")
関連事項