12345678910111213141516171819202122232425262728 |
- class CPicture : public COleDispatchDriver
- {
- public:
- CPicture() {}
- CPicture(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CPicture(const CPicture& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- long GetHandle();
- long GetHPal();
- void SetHPal(long);
- short GetType();
- long GetWidth();
- long GetHeight();
- public:
-
- };
|