DataTypes Enumeration
See Also 
SourceCode.Workflow.Authoring Namespace : DataTypes Enumeration



Glossary Item Box

Specifies the DataField.Type property of a DataField object.

Syntax

Visual Basic (Declaration) 
Public Enum DataTypes 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As DataTypes
C# 
public enum DataTypes : System.Enum 
C++/CLI 
public enum class DataTypes : public System.Enum 

Members

MemberDescription
Binary An integral type representing unsigned 8-bit integers with values between 0 and 255.
BooleanA simple type representing Boolean values of true or false.
DateA type representing a date value.
DecimalA simple type representing values ranging from to approximately with 28-29 significant digits.
DoubleA floating point type representing values ranging from approximately to with a precision of 15-16 digits.
Integer An integral type representing signed 16-bit integers with values between -32768 and 32767.
Long An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647.
StringA sealed class type representing Unicode character strings.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         SourceCode.Workflow.Authoring.DataTypes

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also