AxCommVarType.cs 396 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. public enum AxCommVarType
  7. {
  8. Undefined = 0,
  9. Boolean = 1,
  10. SByte = 2,
  11. Byte = 3,
  12. Int16 = 4,
  13. UInt16 = 5,
  14. Int32 = 6,
  15. UInt32 = 7,
  16. Int64 = 8,
  17. UInt64 = 9,
  18. Float = 10,
  19. Double = 11,
  20. String = 12,
  21. Complex = 100,
  22. Custom = 200
  23. }