Show / Hide Table of Contents

    Class CustomPropertyValueType

    This has been moved to DesignData.SDS2.Setup, please use that in new code. This is just a placeholder to autobox these so existing code will still compile.

    Inheritance
    object
    CustomPropertyValueType
    Inherited Members
    object.GetType()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    [Obsolete("This enum was moved to DesignData.SDS2.Setup, please reference that.", false)]
    public sealed class CustomPropertyValueType

    Constructors

    CustomPropertyValueType()

    This has been moved to DesignData.SDS2.Setup, please use that in new code. This is just a placeholder to autobox these so existing code will still compile.

    Declaration
    public CustomPropertyValueType()

    Fields

    Bool

    This value is a boolean

    Declaration
    [Obsolete("This enum was moved to DesignData.SDS2.Setup, please reference that.", false)]
    public static CustomPropertyValueType Bool
    Field Value
    Type Description
    CustomPropertyValueType

    Date

    This value is a date

    Declaration
    [Obsolete("This enum was moved to DesignData.SDS2.Setup, please reference that.", false)]
    public static CustomPropertyValueType Date
    Field Value
    Type Description
    CustomPropertyValueType

    Double

    This value is an double

    Declaration
    [Obsolete("This enum was moved to DesignData.SDS2.Setup, please reference that.", false)]
    public static CustomPropertyValueType Double
    Field Value
    Type Description
    CustomPropertyValueType

    None

    This value doesn't exist in the schema

    Declaration
    [Obsolete("This enum was moved to DesignData.SDS2.Setup, please reference that.", false)]
    public static CustomPropertyValueType None
    Field Value
    Type Description
    CustomPropertyValueType

    String

    This value is a System.String

    Declaration
    [Obsolete("This enum was moved to DesignData.SDS2.Setup, please reference that.", false)]
    public static CustomPropertyValueType String
    Field Value
    Type Description
    CustomPropertyValueType

    Operators

    explicit operator int(CustomPropertyValueType)

    Implicitly box and unbox to keep existing code compiling using obsolete type

    Declaration
    public static explicit operator int(CustomPropertyValueType v)
    Parameters
    Type Name Description
    CustomPropertyValueType v
    Returns
    Type Description
    int

    implicit operator CustomPropertyValueType(CustomPropertyValueType)

    Implicitly box and unbox to keep existing code compiling using obsolete type

    Declaration
    public static implicit operator CustomPropertyValueType(CustomPropertyValueType v)
    Parameters
    Type Name Description
    CustomPropertyValueType v
    Returns
    Type Description
    CustomPropertyValueType

    implicit operator CustomPropertyValueType(CustomPropertyValueType)

    Implicitly box and unbox to keep existing code compiling using obsolete type

    Declaration
    public static implicit operator CustomPropertyValueType(CustomPropertyValueType v)
    Parameters
    Type Name Description
    CustomPropertyValueType v
    Returns
    Type Description
    CustomPropertyValueType

    implicit operator CustomPropertyValueType(int)

    Implicitly box and unbox to keep existing code compiling using obsolete type

    Declaration
    public static implicit operator CustomPropertyValueType(int v)
    Parameters
    Type Name Description
    int v
    Returns
    Type Description
    CustomPropertyValueType
    Back to top