Show / Hide Table of Contents

    Class ModelViewDescription

    This has been renamed ModelViewDefinition, please reference that class from now on.

    Inheritance
    System.Object
    ModelViewDescription
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    [Obsolete("This enum was renamed to ModelViewDefinition, please reference that.", false)]
    public sealed class ModelViewDescription

    Constructors

    ModelViewDescription()

    Declaration
    public ModelViewDescription()

    Fields

    ACI131ConcreteReinforcement

    IFC 4 ACI 131.2R-17 contains only concrete reinforcement materials

    Declaration
    [Obsolete("This enum was renamed to ModelViewDefinition. Please reference that.", false)]
    public static ModelViewDefinition ACI131ConcreteReinforcement
    Field Value
    Type Description
    ModelViewDefinition

    CoordinationView2

    IFC 2x3 Coordination View 2.0 is the most common MVD used worldwide

    Declaration
    [Obsolete("This enum was renamed to ModelViewDefinition. Please reference that.", false)]
    public static ModelViewDefinition CoordinationView2
    Field Value
    Type Description
    ModelViewDefinition

    DesignTransferView

    IFC 4 Design Transfer View is the most common, general purpose IFC 4 MVD

    Declaration
    [Obsolete("This enum was renamed to ModelViewDefinition. Please reference that.", false)]
    public static ModelViewDefinition DesignTransferView
    Field Value
    Type Description
    ModelViewDefinition

    EM11SteelFabrication

    IFC 2x3 EM11 is an AISC creation used only by steel fabricators

    Declaration
    [Obsolete("This enum was renamed to ModelViewDefinition. Please reference that.", false)]
    public static ModelViewDefinition EM11SteelFabrication
    Field Value
    Type Description
    ModelViewDefinition

    ReferenceView

    IFC 4 Reference View provides little benefit and isn't supported yet

    Declaration
    [Obsolete("This enum was renamed to ModelViewDefinition. Please reference that.", false)]
    public static ModelViewDefinition ReferenceView
    Field Value
    Type Description
    ModelViewDefinition

    Unknown

    Using 'unknown' is an error condition

    Declaration
    [Obsolete("This enum was renamed to ModelViewDefinition. Please reference that.", false)]
    public static ModelViewDefinition Unknown
    Field Value
    Type Description
    ModelViewDefinition

    Operators

    Explicit(ModelViewDescription to Int32)

    Implicitly convert between new name and obsoleted name

    Declaration
    public static explicit operator int (ModelViewDescription mvd)
    Parameters
    Type Name Description
    ModelViewDescription mvd
    Returns
    Type Description
    System.Int32

    Implicit(ModelViewDefinition to ModelViewDescription)

    Implicitly convert between new name and obsoleted name

    Declaration
    public static implicit operator ModelViewDescription(ModelViewDefinition mvd)
    Parameters
    Type Name Description
    ModelViewDefinition mvd
    Returns
    Type Description
    ModelViewDescription

    Implicit(ModelViewDescription to ModelViewDefinition)

    Implicitly convert between new name and obsoleted name

    Declaration
    public static implicit operator ModelViewDefinition(ModelViewDescription mvd)
    Parameters
    Type Name Description
    ModelViewDescription mvd
    Returns
    Type Description
    ModelViewDefinition

    Implicit(Int32 to ModelViewDescription)

    Implicitly convert between new name and obsoleted name

    Declaration
    public static implicit operator ModelViewDescription(int v)
    Parameters
    Type Name Description
    System.Int32 v
    Returns
    Type Description
    ModelViewDescription
    Back to top