mogeoevent.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 "mogeoevent.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CMoGeoEvent properties
  8. CString CMoGeoEvent::GetTag()
  9. {
  10. CString result;
  11. GetProperty(0x1, VT_BSTR, (void*)&result);
  12. return result;
  13. }
  14. void CMoGeoEvent::SetTag(LPCTSTR propVal)
  15. {
  16. SetProperty(0x1, VT_BSTR, propVal);
  17. }
  18. long CMoGeoEvent::GetSymbolIndex()
  19. {
  20. long result;
  21. GetProperty(0x2, VT_I4, (void*)&result);
  22. return result;
  23. }
  24. void CMoGeoEvent::SetSymbolIndex(long propVal)
  25. {
  26. SetProperty(0x2, VT_I4, propVal);
  27. }
  28. double CMoGeoEvent::GetX()
  29. {
  30. double result;
  31. GetProperty(0x3, VT_R8, (void*)&result);
  32. return result;
  33. }
  34. void CMoGeoEvent::SetX(double propVal)
  35. {
  36. SetProperty(0x3, VT_R8, propVal);
  37. }
  38. double CMoGeoEvent::GetY()
  39. {
  40. double result;
  41. GetProperty(0x4, VT_R8, (void*)&result);
  42. return result;
  43. }
  44. void CMoGeoEvent::SetY(double propVal)
  45. {
  46. SetProperty(0x4, VT_R8, propVal);
  47. }
  48. long CMoGeoEvent::GetIndex()
  49. {
  50. long result;
  51. GetProperty(0x5, VT_I4, (void*)&result);
  52. return result;
  53. }
  54. void CMoGeoEvent::SetIndex(long propVal)
  55. {
  56. SetProperty(0x5, VT_I4, propVal);
  57. }
  58. LPDISPATCH CMoGeoEvent::GetShape()
  59. {
  60. LPDISPATCH result;
  61. GetProperty(0x6, VT_DISPATCH, (void*)&result);
  62. return result;
  63. }
  64. void CMoGeoEvent::SetShape(LPDISPATCH propVal)
  65. {
  66. SetProperty(0x6, VT_DISPATCH, propVal);
  67. }
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CMoGeoEvent operations
  70. void CMoGeoEvent::MoveTo(double X, double Y)
  71. {
  72. static BYTE parms[] =
  73. VTS_R8 VTS_R8;
  74. InvokeHelper(0x7, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
  75.  X, Y);
  76. }
  77. void CMoGeoEvent::Move(double X, double Y)
  78. {
  79. static BYTE parms[] =
  80. VTS_R8 VTS_R8;
  81. InvokeHelper(0x8, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
  82.  X, Y);
  83. }