1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #if !defined(AFX_VCSHADOW_H__63336969_ECC0_4E5B_9AA0_8924A3A2EEB1__INCLUDED_)
- #define AFX_VCSHADOW_H__63336969_ECC0_4E5B_9AA0_8924A3A2EEB1__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcBrush;
- class CVcCoor;
- class CVcShadow : public COleDispatchDriver
- {
- public:
- CVcShadow() {}
- CVcShadow(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcShadow(const CVcShadow& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- long GetStyle();
- void SetStyle(long nNewValue);
- CVcBrush GetBrush();
- CVcCoor GetOffset();
- };
- #endif
|