123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
- // NOTE: Do not modify the contents of this file. If this class is regenerated by
- // Microsoft Visual C++, your modifications will be overwritten.
- #include "stdafx.h"
- #include "vcaxis.h"
- // Dispatch interfaces referenced by this interface
- #include "VcPen.h"
- #include "VcCategoryScale.h"
- #include "VcAxisGrid.h"
- #include "vcintersection.h"
- #include "VcTick.h"
- #include "vcaxisscale.h"
- #include "VcValueScale.h"
- #include "vcaxistitle.h"
- #include "VcLabels.h"
- /////////////////////////////////////////////////////////////////////////////
- // CVcAxis properties
- /////////////////////////////////////////////////////////////////////////////
- // CVcAxis operations
- CVcPen CVcAxis::GetPen()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcPen(pDispatch);
- }
- short CVcAxis::GetLabelLevelCount()
- {
- short result;
- InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, NULL);
- return result;
- }
- CVcCategoryScale CVcAxis::GetCategoryScale()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcCategoryScale(pDispatch);
- }
- CVcAxisGrid CVcAxis::GetAxisGrid()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcAxisGrid(pDispatch);
- }
- CVcIntersection CVcAxis::GetIntersection()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x6, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcIntersection(pDispatch);
- }
- CVcTick CVcAxis::GetTick()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x7, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcTick(pDispatch);
- }
- CVcAxisScale CVcAxis::GetAxisScale()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x8, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcAxisScale(pDispatch);
- }
- CVcValueScale CVcAxis::GetValueScale()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0x9, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcValueScale(pDispatch);
- }
- CVcAxisTitle CVcAxis::GetAxisTitle()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0xa, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcAxisTitle(pDispatch);
- }
- CVcLabels CVcAxis::GetLabels()
- {
- LPDISPATCH pDispatch;
- InvokeHelper(0xb, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
- return CVcLabels(pDispatch);
- }
|