// 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 "axis.h" // Dispatch interfaces referenced by this interface #include "cubefont.h" #include "deriveddouble.h" #include "gridlines.h" #include "valuelabelcollection.h" #include "label.h" ///////////////////////////////////////////////////////////////////////////// // CAxis properties LPDISPATCH CAxis::GetParent() { LPDISPATCH result; GetProperty(0x1, VT_DISPATCH, (void*)&result); return result; } CString CAxis::GetName() { CString result; GetProperty(0x2, VT_BSTR, (void*)&result); return result; } BOOL CAxis::GetIsShowing() { BOOL result; GetProperty(0x3, VT_BOOL, (void*)&result); return result; } void CAxis::SetIsShowing(BOOL propVal) { SetProperty(0x3, VT_BOOL, propVal); } long CAxis::GetAnnotationMethod() { long result; GetProperty(0x4, VT_I4, (void*)&result); return result; } void CAxis::SetAnnotationMethod(long propVal) { SetProperty(0x4, VT_I4, propVal); } double CAxis::GetOrigin() { double result; GetProperty(0x5, VT_R8, (void*)&result); return result; } void CAxis::SetOrigin(double propVal) { SetProperty(0x5, VT_R8, propVal); } CCubeFont CAxis::GetAnnotationFont() { LPDISPATCH pDispatch; GetProperty(0x6, VT_DISPATCH, (void*)&pDispatch); return CCubeFont(pDispatch); } CCubeFont CAxis::GetTitleFont() { LPDISPATCH pDispatch; GetProperty(0x7, VT_DISPATCH, (void*)&pDispatch); return CCubeFont(pDispatch); } CDerivedDouble CAxis::GetMin() { LPDISPATCH pDispatch; GetProperty(0x8, VT_DISPATCH, (void*)&pDispatch); return CDerivedDouble(pDispatch); } CDerivedDouble CAxis::GetMax() { LPDISPATCH pDispatch; GetProperty(0x9, VT_DISPATCH, (void*)&pDispatch); return CDerivedDouble(pDispatch); } CGridLines CAxis::GetMajorGrid() { LPDISPATCH pDispatch; GetProperty(0xa, VT_DISPATCH, (void*)&pDispatch); return CGridLines(pDispatch); } CValueLabelCollection CAxis::GetValueLabels() { LPDISPATCH pDispatch; GetProperty(0xb, VT_DISPATCH, (void*)&pDispatch); return CValueLabelCollection(pDispatch); } CLabel CAxis::GetTitle() { LPDISPATCH pDispatch; GetProperty(0xc, VT_DISPATCH, (void*)&pDispatch); return CLabel(pDispatch); } ///////////////////////////////////////////////////////////////////////////// // CAxis operations