📄 excelcf.h
字号:
// ExcelCF.h: interface for the ExcelCF class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_EXCELCF_H__67DE4925_5A24_4AF6_B71E_0BC9A514BE58__INCLUDED_)
#define AFX_EXCELCF_H__67DE4925_5A24_4AF6_B71E_0BC9A514BE58__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class ExcelCF
{
public:
ExcelCF();
virtual ~ExcelCF();
int CreateExcelFile(CString strFileName);
void InsertTableColNum(int m_nCount);
void InsertColName(CString strColname,int nCol,int Width);
void InsertColums(int* nColLength,int nColNum,LPTSTR* arrpsz );
void InsertColums(CUIntArray& nIntArray,int nColNum,CStringArray& strColums);
void InsertStringColValue(CString strValue,int nCol,int nRow);
void InsertDoubleColValue(double dValue,int nCol,int nRow);
void InsertIntgerColValue(int nValue,int nCol,int nRow);
void ExcelClose();
void ExceLDimension();
FILE* m_Filehandle;
int m_nCount;
};
#endif // !defined(AFX_EXCELCF_H__67DE4925_5A24_4AF6_B71E_0BC9A514BE58__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -