資源簡介
在VC++中使用MSChart表格控件,效果不錯。MSChart,微軟的一個很不錯的畫圖控件,功能比較全面

代碼片段和文件信息
//?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“
/////////////////////////////////////////////////////////////////////////////
//?COleFont?properties
CString?COleFont::GetName()
{
CString?result;
GetProperty(0x0?VT_BSTR?(void*)&result);
return?result;
}
void?COleFont::SetName(LPCTSTR?propVal)
{
SetProperty(0x0?VT_BSTR?propVal);
}
CY?COleFont::GetSize()
{
CY?result;
GetProperty(0x2?VT_CY?(void*)&result);
return?result;
}
void?COleFont::SetSize(const?CY&?propVal)
{
SetProperty(0x2?VT_CY?&propVal);
}
BOOL?COleFont::GetBold()
{
BOOL?result;
GetProperty(0x3?VT_BOOL?(void*)&result);
return?result;
}
void?COleFont::SetBold(BOOL?propVal)
{
SetProperty(0x3?VT_BOOL?propVal);
}
BOOL?COleFont::GetItalic()
{
BOOL?result;
GetProperty(0x4?VT_BOOL?(void*)&result);
return?result;
}
void?COleFont::SetItalic(BOOL?propVal)
{
SetProperty(0x4?VT_BOOL?propVal);
}
BOOL?COleFont::GetUnderline()
{
BOOL?result;
GetProperty(0x5?VT_BOOL?(void*)&result);
return?result;
}
void?COleFont::SetUnderline(BOOL?propVal)
{
SetProperty(0x5?VT_BOOL?propVal);
}
BOOL?COleFont::GetStrikethrough()
{
BOOL?result;
GetProperty(0x6?VT_BOOL?(void*)&result);
return?result;
}
void?COleFont::SetStrikethrough(BOOL?propVal)
{
SetProperty(0x6?VT_BOOL?propVal);
}
short?COleFont::GetWeight()
{
short?result;
GetProperty(0x7?VT_I2?(void*)&result);
return?result;
}
void?COleFont::SetWeight(short?propVal)
{
SetProperty(0x7?VT_I2?propVal);
}
short?COleFont::GetCharset()
{
short?result;
GetProperty(0x8?VT_I2?(void*)&result);
return?result;
}
void?COleFont::SetCharset(short?propVal)
{
SetProperty(0x8?VT_I2?propVal);
}
/////////////////////////////////////////////////////////////////////////////
//?COleFont?operations
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????196689??2014-04-13?19:40??TestMsChart\Debug\TestMsChart.exe
?????文件???????2098??2014-04-13?18:38??TestMsChart\font.cpp
?????文件???????1461??2014-04-13?18:38??TestMsChart\font.h
?????文件??????15516??2014-04-13?18:38??TestMsChart\mschart.cpp
?????文件???????4854??2014-04-13?18:38??TestMsChart\mschart.h
?????文件???????3669??2014-04-13?18:37??TestMsChart\ReadMe.txt
?????文件???????1078??2014-04-13?18:37??TestMsChart\res\TestMsChart.ico
?????文件????????403??2014-04-13?18:37??TestMsChart\res\TestMsChart.rc2
?????文件????????735??2014-04-13?19:03??TestMsChart\resource.h
?????文件????????213??2014-04-13?18:37??TestMsChart\StdAfx.cpp
?????文件???????1054??2014-04-13?18:37??TestMsChart\StdAfx.h
?????文件??????45508??2014-04-13?19:08??TestMsChart\TestMsChart.aps
?????文件???????1293??2014-04-13?19:40??TestMsChart\TestMsChart.clw
?????文件???????2133??2014-04-13?18:37??TestMsChart\TestMsChart.cpp
?????文件??????18154??2014-04-13?18:41??TestMsChart\TestMsChart.dsp
?????文件????????591??2014-04-13?18:41??TestMsChart\TestMsChart.dsw
?????文件???????1379??2014-04-13?18:37??TestMsChart\TestMsChart.h
?????文件?????197632??2014-04-13?19:40??TestMsChart\TestMsChart.ncb
?????文件??????48640??2014-04-13?19:40??TestMsChart\TestMsChart.opt
?????文件???????2322??2014-04-13?19:40??TestMsChart\TestMsChart.plg
?????文件??????44482??2014-04-13?19:08??TestMsChart\TestMsChart.rc
?????文件???????9238??2014-04-13?19:40??TestMsChart\TestMsChartDlg.cpp
?????文件???????1530??2014-04-13?19:05??TestMsChart\TestMsChartDlg.h
?????文件???????2567??2014-04-13?18:38??TestMsChart\vcaxis.cpp
?????文件???????1620??2014-04-13?18:38??TestMsChart\vcaxis.h
?????文件????????930??2014-04-13?18:38??TestMsChart\vcaxisgrid.cpp
?????文件???????1242??2014-04-13?18:38??TestMsChart\vcaxisgrid.h
?????文件???????1775??2014-04-13?18:38??TestMsChart\vcaxisscale.cpp
?????文件???????1355??2014-04-13?18:38??TestMsChart\vcaxisscale.h
?????文件???????2370??2014-04-13?18:38??TestMsChart\vcaxisti
............此處省略87個文件信息
評論
共有 條評論