Indicates the data type of a value.
enum ValueTypeEnum { vtOther = 0, vtString = 1, vtInteger = 2, vtFloating = 3 };
public enum ValueTypeEnum { vtOther = 0, vtString = 1, vtInteger = 2, vtFloating = 3 }
Public Enum ValueTypeEnum vtOther = 0 vtString = 1 vtInteger = 2 vtFloating = 3 End Enum
| 
Members  | 
Description  | 
| 
vtOther = 0  | 
The value is something other than one of the defined types.  | 
| 
vtString = 1  | 
The value is a string.  | 
| 
vtInteger = 2  | 
The value is an integer.  | 
| 
vtFloating = 3  | 
The value is a floating-point number.  | 
| 
adTempus API Reference version 3.0.0.0, revised 10/30/2008 |