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
    System.Object
    CustomPropertyValueType
    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 moved to DesignData.SDS2.Setup, please reference that.", false)]
    public sealed class CustomPropertyValueType

    Constructors

    CustomPropertyValueType()

    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(CustomPropertyValueType to Int32)

    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
    System.Int32

    Implicit(CustomPropertyValueType to 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(CustomPropertyValueType to 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(Int32 to CustomPropertyValueType)

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

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