⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xgraphdatanotation.h

📁 Displaying large amounts of technical data in a chart can be a frustrating task. You can find tons o
💻 H
字号:
// XGraphDataNotation.h: Schnittstelle f黵 die Klasse XGraphDataNotation.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_XGRAPHDATANOTATION_H__65ED10CC_9CF1_4A5E_B72F_0C37AF298660__INCLUDED_)
#define AFX_XGRAPHDATANOTATION_H__65ED10CC_9CF1_4A5E_B72F_0C37AF298660__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "XGraphObjectBase.h"

#ifdef _AFXDLL
class __declspec(dllexport)  CXGraphDataNotation : public CXGraphObject  
#else
class __declspec(dllimport)  CXGraphDataNotation : public CXGraphObject  
#endif
{
	DECLARE_SERIAL( CXGraphDataNotation )

	friend class CXGraph;

private:

	CFont m_Font;
	bool  m_bPositioned;

public:
	CXGraphDataNotation();
	virtual ~CXGraphDataNotation();
	virtual void Draw(CDCEx *pDC);
	
	double  m_fXVal;
	double  m_fYVal;
	int		m_nCurve;
	int     m_nIndex;
	CString m_cText;

	virtual void Serialize( CArchive& archive );

};

#endif // !defined(AFX_XGRAPHDATANOTATION_H__65ED10CC_9CF1_4A5E_B72F_0C37AF298660__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -