vcintersection.cpp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 "vcintersection.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CVcIntersection properties
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVcIntersection operations
  10. BOOL CVcIntersection::GetAuto()
  11. {
  12. BOOL result;
  13. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
  14. return result;
  15. }
  16. void CVcIntersection::SetAuto(BOOL bNewValue)
  17. {
  18. static BYTE parms[] =
  19. VTS_BOOL;
  20. InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  21. bNewValue);
  22. }
  23. double CVcIntersection::GetPoint()
  24. {
  25. double result;
  26. InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_R8, (void*)&result, NULL);
  27. return result;
  28. }
  29. void CVcIntersection::SetPoint(double newValue)
  30. {
  31. static BYTE parms[] =
  32. VTS_R8;
  33. InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  34. newValue);
  35. }
  36. long CVcIntersection::GetAxisID()
  37. {
  38. long result;
  39. InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  40. return result;
  41. }
  42. short CVcIntersection::GetIndex()
  43. {
  44. short result;
  45. InvokeHelper(0x4, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, NULL);
  46. return result;
  47. }
  48. BOOL CVcIntersection::GetLabelsInsidePlot()
  49. {
  50. BOOL result;
  51. InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
  52. return result;
  53. }
  54. void CVcIntersection::SetLabelsInsidePlot(BOOL bNewValue)
  55. {
  56. static BYTE parms[] =
  57. VTS_BOOL;
  58. InvokeHelper(0x5, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  59. bNewValue);
  60. }