mofield.cpp
上传用户:qinfarui
上传日期:2022-08-10
资源大小:362k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
  2. // NOTE: Do not modify the contents of this file.  If this class is regenerated by
  3. //  Microsoft Visual C++, your modifications will be overwritten.
  4. #include "stdafx.h"
  5. #include "mofield.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CMoField properties
  8. CString CMoField::GetName()
  9. {
  10. CString result;
  11. GetProperty(0x1, VT_BSTR, (void*)&result);
  12. return result;
  13. }
  14. void CMoField::SetName(LPCTSTR propVal)
  15. {
  16. SetProperty(0x1, VT_BSTR, propVal);
  17. }
  18. long CMoField::GetType()
  19. {
  20. long result;
  21. GetProperty(0x2, VT_I4, (void*)&result);
  22. return result;
  23. }
  24. void CMoField::SetType(long propVal)
  25. {
  26. SetProperty(0x2, VT_I4, propVal);
  27. }
  28. CString CMoField::GetValueAsString()
  29. {
  30. CString result;
  31. GetProperty(0x3, VT_BSTR, (void*)&result);
  32. return result;
  33. }
  34. void CMoField::SetValueAsString(LPCTSTR propVal)
  35. {
  36. SetProperty(0x3, VT_BSTR, propVal);
  37. }
  38. VARIANT CMoField::GetValue()
  39. {
  40. VARIANT result;
  41. GetProperty(0x4, VT_VARIANT, (void*)&result);
  42. return result;
  43. }
  44. void CMoField::SetValue(const VARIANT& propVal)
  45. {
  46. SetProperty(0x4, VT_VARIANT, &propVal);
  47. }
  48. VARIANT CMoField::Get_Value()
  49. {
  50. VARIANT result;
  51. GetProperty(0x0, VT_VARIANT, (void*)&result);
  52. return result;
  53. }
  54. void CMoField::Set_Value(const VARIANT& propVal)
  55. {
  56. SetProperty(0x0, VT_VARIANT, &propVal);
  57. }
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CMoField operations