vcfill.cpp 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 "vcfill.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "vcbrush.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVcFill properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CVcFill operations
  12. long CVcFill::GetStyle()
  13. {
  14. long result;
  15. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. void CVcFill::SetStyle(long nNewValue)
  19. {
  20. static BYTE parms[] =
  21. VTS_I4;
  22. InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  23. nNewValue);
  24. }
  25. CVcBrush CVcFill::GetBrush()
  26. {
  27. LPDISPATCH pDispatch;
  28. InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  29. return CVcBrush(pDispatch);
  30. }