1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #if !defined(AFX_VCTITLE_H__CA94A7A0_45E2_4F60_BB05_5168FC6CEA9C__INCLUDED_)
- #define AFX_VCTITLE_H__CA94A7A0_45E2_4F60_BB05_5168FC6CEA9C__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcTextLayout;
- class CVcLocation;
- class CVcBackdrop;
- class CVcFont;
- class COleFont;
- class CVcTitle : public COleDispatchDriver
- {
- public:
- CVcTitle() {}
- CVcTitle(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcTitle(const CVcTitle& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- CVcTextLayout GetTextLayout();
- CString GetText();
- void SetText(LPCTSTR lpszNewValue);
- CVcLocation GetLocation();
- CVcBackdrop GetBackdrop();
- CVcFont GetVtFont();
- short GetTextLength();
- void SetRefFont(LPDISPATCH newValue);
- COleFont GetFont();
- void Select();
- };
- #endif
|