AssetPropertyType Enumeration
An enumerated type listing AssetProperty Types in Revit.

Namespace: Autodesk.Revit.Utility
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)

Syntax

C#
public enum AssetPropertyType
Visual Basic
Public Enumeration AssetPropertyType
Visual C++
public enum class AssetPropertyType

Members

Member nameDescription
APT_UnknownAn unknown or unspecified property type.
APT_PropertiesRepresents Properties. The corresponding AssetProperty sub class is AssetProperties.
APT_BooleanRepresents property Boolean. The corresponding AssetProperty sub class is AssetPropertyBoolean.
APT_EnumRepresents property Enum. The corresponding AssetProperty sub class is AssetPropertyEnum.
APT_IntegerRepresents property Integer. The corresponding AssetProperty sub class is AssetPropertyInteger.
APT_FloatRepresents property Float. The corresponding AssetProperty sub class is AssetPropertyFloat.
APT_DoubleRepresents property Double. The corresponding AssetProperty sub class is AssetPropertyDouble.
APT_DoubleArray2dRepresents property 2d Double array. The corresponding AssetProperty sub class is AssetPropertyDoubleArray2d.
APT_DoubleArray3dRepresents property 3d Double array. The corresponding AssetProperty sub class is AssetPropertyDoubleArray3d.
APT_DoubleArray4dRepresents property 4d Double array. The corresponding AssetProperty sub class is AssetPropertyDoubleArray4d.
APT_Double44Represents property 4x4 Double matrix. The corresponding AssetProperty sub class is AssetPropertyDoubleMatrix44.
APT_StringRepresents property String. The corresponding AssetProperty sub class is AssetPropertyString.
APT_TimeRepresents property Time. The corresponding AssetProperty sub class is AssetPropertyTime.
APT_DistanceRepresents property Distance. The corresponding AssetProperty sub class is AssetPropertyDistance.
APT_AssetRepresents property Asset. The corresponding AssetProperty sub class is Asset.
APT_ReferenceRepresents property Reference. The corresponding AssetProperty sub class is AssetPropertyReference.
APT_Int64Represents property Int64. The corresponding AssetProperty sub class is AssetPropertyInt64.
APT_UInt64Represents property unsigned Int64. The corresponding AssetProperty sub class is AssetPropertyUInt64.
APT_ListRepresents property List. The corresponding AssetProperty sub class is AssetPropertyList.
APT_FloatArrayRepresents property Float array. The corresponding AssetProperty sub class is AssetPropertyFloatArray.

See Also