vcfont.cpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 "vcfont.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "VcColor.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVcFont properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CVcFont operations
  12. CString CVcFont::GetName()
  13. {
  14. CString result;
  15. InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
  16. return result;
  17. }
  18. void CVcFont::SetName(LPCTSTR lpszNewValue)
  19. {
  20. static BYTE parms[] =
  21. VTS_BSTR;
  22. InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  23. lpszNewValue);
  24. }
  25. float CVcFont::GetSize()
  26. {
  27. float result;
  28. InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_R4, (void*)&result, NULL);
  29. return result;
  30. }
  31. void CVcFont::SetSize(float newValue)
  32. {
  33. static BYTE parms[] =
  34. VTS_R4;
  35. InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  36. newValue);
  37. }
  38. short CVcFont::GetStyle()
  39. {
  40. short result;
  41. InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, NULL);
  42. return result;
  43. }
  44. void CVcFont::SetStyle(short nNewValue)
  45. {
  46. static BYTE parms[] =
  47. VTS_I2;
  48. InvokeHelper(0x3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  49. nNewValue);
  50. }
  51. short CVcFont::GetEffect()
  52. {
  53. short result;
  54. InvokeHelper(0x4, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, NULL);
  55. return result;
  56. }
  57. void CVcFont::SetEffect(short nNewValue)
  58. {
  59. static BYTE parms[] =
  60. VTS_I2;
  61. InvokeHelper(0x4, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
  62. nNewValue);
  63. }
  64. CVcColor CVcFont::GetVtColor()
  65. {
  66. LPDISPATCH pDispatch;
  67. InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
  68. return CVcColor(pDispatch);
  69. }