1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #if !defined(AFX_VCLEGEND_H__FB7A2A7F_AC0C_4C1C_BAB1_763DB9DC834C__INCLUDED_)
- #define AFX_VCLEGEND_H__FB7A2A7F_AC0C_4C1C_BAB1_763DB9DC834C__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcLocation;
- class CVcBackdrop;
- class CVcFont;
- class CVcTextLayout;
- class COleFont;
- class CVcLegend : public COleDispatchDriver
- {
- public:
- CVcLegend() {}
- CVcLegend(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcLegend(const CVcLegend& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- CVcLocation GetLocation();
- CVcBackdrop GetBackdrop();
- CVcFont GetVtFont();
- CVcTextLayout GetTextLayout();
- void SetRefFont(LPDISPATCH newValue);
- COleFont GetFont();
- void Select();
- };
- #endif
|