123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #if !defined(AFX_VCAXIS_H__BE807A3A_E500_4B28_80BC_8CF94AD65604__INCLUDED_)
- #define AFX_VCAXIS_H__BE807A3A_E500_4B28_80BC_8CF94AD65604__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcPen;
- class CVcCategoryScale;
- class CVcAxisGrid;
- class CVcIntersection;
- class CVcTick;
- class CVcAxisScale;
- class CVcValueScale;
- class CVcAxisTitle;
- class CVcLabels;
- class CVcAxis : public COleDispatchDriver
- {
- public:
- CVcAxis() {}
- CVcAxis(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcAxis(const CVcAxis& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- CVcPen GetPen();
- short GetLabelLevelCount();
- CVcCategoryScale GetCategoryScale();
- CVcAxisGrid GetAxisGrid();
- CVcIntersection GetIntersection();
- CVcTick GetTick();
- CVcAxisScale GetAxisScale();
- CVcValueScale GetValueScale();
- CVcAxisTitle GetAxisTitle();
- CVcLabels GetLabels();
- };
- #endif
|