columns.cpp
上传用户:gulin912
上传日期:2022-08-10
资源大小:330k
文件大小:1k
源码类别:

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 "columns.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "Column.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CColumns properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CColumns operations
  12. long CColumns::GetCount()
  13. {
  14. long result;
  15. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. CColumn CColumns::Add(short Index)
  19. {
  20. LPDISPATCH pDispatch;
  21. static BYTE parms[] =
  22. VTS_I2;
  23. InvokeHelper(0x2, DISPATCH_METHOD, VT_DISPATCH, (void*)&pDispatch, parms,
  24. Index);
  25. return CColumn(pDispatch);
  26. }
  27. CColumn CColumns::GetItem(const VARIANT& Index)
  28. {
  29. LPDISPATCH pDispatch;
  30. static BYTE parms[] =
  31. VTS_VARIANT;
  32. InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, parms,
  33. &Index);
  34. return CColumn(pDispatch);
  35. }
  36. void CColumns::Remove(const VARIANT& Index)
  37. {
  38. static BYTE parms[] =
  39. VTS_VARIANT;
  40. InvokeHelper(0x3, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
  41.  &Index);
  42. }