font.cpp
资源名称:MapXView.rar [点击查看]
上传用户:gulin912
上传日期:2022-08-10
资源大小:330k
文件大小:2k
源码类别:
GIS编程
开发平台:
Visual C++
- // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
- // NOTE: Do not modify the contents of this file. If this class is regenerated by
- // Microsoft Visual C++, your modifications will be overwritten.
- #include "stdafx.h"
- #include "font.h"
- /////////////////////////////////////////////////////////////////////////////
- // COleFont1 properties
- CString COleFont1::GetName()
- {
- CString result;
- GetProperty(0x0, VT_BSTR, (void*)&result);
- return result;
- }
- void COleFont1::SetName(LPCTSTR propVal)
- {
- SetProperty(0x0, VT_BSTR, propVal);
- }
- CY COleFont1::GetSize()
- {
- CY result;
- GetProperty(0x2, VT_CY, (void*)&result);
- return result;
- }
- void COleFont1::SetSize(const CY& propVal)
- {
- SetProperty(0x2, VT_CY, &propVal);
- }
- BOOL COleFont1::GetBold()
- {
- BOOL result;
- GetProperty(0x3, VT_BOOL, (void*)&result);
- return result;
- }
- void COleFont1::SetBold(BOOL propVal)
- {
- SetProperty(0x3, VT_BOOL, propVal);
- }
- BOOL COleFont1::GetItalic()
- {
- BOOL result;
- GetProperty(0x4, VT_BOOL, (void*)&result);
- return result;
- }
- void COleFont1::SetItalic(BOOL propVal)
- {
- SetProperty(0x4, VT_BOOL, propVal);
- }
- BOOL COleFont1::GetUnderline()
- {
- BOOL result;
- GetProperty(0x5, VT_BOOL, (void*)&result);
- return result;
- }
- void COleFont1::SetUnderline(BOOL propVal)
- {
- SetProperty(0x5, VT_BOOL, propVal);
- }
- BOOL COleFont1::GetStrikethrough()
- {
- BOOL result;
- GetProperty(0x6, VT_BOOL, (void*)&result);
- return result;
- }
- void COleFont1::SetStrikethrough(BOOL propVal)
- {
- SetProperty(0x6, VT_BOOL, propVal);
- }
- short COleFont1::GetWeight()
- {
- short result;
- GetProperty(0x7, VT_I2, (void*)&result);
- return result;
- }
- void COleFont1::SetWeight(short propVal)
- {
- SetProperty(0x7, VT_I2, propVal);
- }
- short COleFont1::GetCharset()
- {
- short result;
- GetProperty(0x8, VT_I2, (void*)&result);
- return result;
- }
- void COleFont1::SetCharset(short propVal)
- {
- SetProperty(0x8, VT_I2, propVal);
- }
- /////////////////////////////////////////////////////////////////////////////
- // COleFont1 operations